forked from TypeFox/monaco-languageclient-ng-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.67 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "example-angular-client",
"version": "0.0.0",
"private": "true",
"type": "module",
"scripts": {
"clean": "shx rm -fr dist *.tsbuildinfo src/assets",
"build:msg": "echo Building angular-client example:",
"build": "npm run build:msg && npm run clean && ng build",
"lint": "eslint . --ext .ts",
"start": "npm run clean && ng serve",
"watch": "npm run clean && ng build --watch --configuration development",
"reset:repo": "git clean -f -X -d"
},
"dependencies": {
"@angular/compiler": "~16.0.5",
"@angular/core": "~16.0.5",
"@angular/platform-browser": "~16.0.5",
"@angular/platform-browser-dynamic": "~16.0.5",
"monaco-languageclient": "~6.2.0",
"monaco-editor-workers": "~0.39.1",
"normalize-url": "~8.0.0",
"rxjs": "~7.8.1",
"vscode-ws-jsonrpc": "~3.0.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-builders/custom-webpack": "~16.0.0",
"@angular-devkit/build-angular": "~16.0.5",
"@angular/cli": "~16.0.5",
"@angular/compiler-cli": "~16.0.5",
"@typescript-eslint/eslint-plugin": "~5.59.9",
"@typescript-eslint/parser": "~5.59.9",
"@types/node": "~18.16.14",
"@types/vscode": "~1.79.0",
"css-loader": "~6.8.1",
"editorconfig": "~1.0.2",
"eslint": "~8.42.0",
"eslint-config-standard": "~17.1.0",
"eslint-plugin-header": "~3.1.1",
"eslint-plugin-import": "~2.27.5",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-unused-imports": "~2.0.0",
"path-browserify": "~1.0.1",
"shx": "~0.3.4",
"style-loader": "~3.3.3",
"tslib": "~2.5.3",
"typescript": "~5.0.4"
},
"volta": {
"node": "18.16.0",
"npm": "9.6.7"
}
}