-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 1.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "monaco-editor-lsp",
"author": "Wiihame<[email protected]>",
"version": "0.0.1",
"dependencies": {
"express": "^4.15.2",
"monaco-editor": "0.14.3",
"monaco-editor-core": "^0.14.6",
"monaco-languageclient": "^0.9.0",
"normalize-url": "^2.0.1",
"reconnecting-websocket": "^3.2.2",
"request-light": "^0.2.2",
"vscode-json-languageservice": "^3.1.4",
"vscode-languageserver": "^4.0.0",
"vscode-ws-jsonrpc": "^0.0.2-1",
"ws": "^5.0.0"
},
"devDependencies": {
"@types/express": "^4.0.35",
"@types/node": "^7.0.12",
"@types/normalize-url": "^1.9.1",
"@types/ws": "0.0.39",
"css-loader": "^0.28.11",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.3",
"style-loader": "^0.20.3",
"typescript": "^3.0.1",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^3.11.0",
"webpack-merge": "^4.1.2"
},
"scripts": {
"prepare": "npm run clean && npm run build",
"compile": "tsc",
"watch": "tsc -w",
"clean": "rimraf lib",
"copy": "cp src/index.html lib/index.html",
"build": "npm run compile && webpack && npm run copy",
"start": "node lib/server.js",
"start:ext": "node lib/server.js --external"
}
}