forked from TypeFox/monaco-languageclient
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 938 Bytes
/
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
{
"private": true,
"devDependencies": {
"@types/express": "^4.0.35",
"@types/node": "^7.0.12",
"@types/normalize-url": "^1.9.1",
"@types/ws": "0.0.39",
"@types/vscode": "1.33.0",
"css-loader": "^0.28.11",
"lerna": "^3.16.4",
"monaco-editor-core": "^0.17.0",
"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": "lerna run prepare",
"start": "lerna run start node-example",
"publish:latest": "lerna publish minor",
"publish:patch": "lerna publish patch",
"publish:next": "lerna publish --canary --preid next --dist-tag next --yes",
"publish:dev": "lerna publish --canary --preid dev --dist-tag dev --yes"
},
"workspaces": [
"client",
"example",
"examples/browser"
]
}