forked from TypeFox/monaco-languageclient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 839 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 839 Bytes
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
{
"private": true,
"name": "node-example",
"version": "0.13.0",
"dependencies": {
"@codingame/monaco-jsonrpc": "^0.3.1",
"express": "^4.15.2",
"file-loader": "^4.3.0",
"monaco-editor-core": "^0.22.3",
"monaco-languageclient": "^0.13.0",
"normalize-url": "^2.0.1",
"reconnecting-websocket": "^3.2.2",
"request-light": "^0.2.2",
"vscode-json-languageservice": "^4.0.2",
"vscode-languageserver": "7.0.0",
"vscode-uri": "^3.0.2",
"ws": "^5.0.0"
},
"scripts": {
"prepare": "yarn run clean && yarn run build",
"compile": "tsc",
"watch": "tsc -w",
"clean": "rimraf lib",
"copy": "cp src/index.html lib/index.html",
"build": "yarn run compile && webpack && yarn run copy",
"start": "node lib/server.js",
"start:ext": "node lib/server.js --external"
}
}