This repository has been archived by the owner on Mar 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.99 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
55
56
57
58
59
60
61
62
{
"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",
"start:server": "node --loader ts-node/esm ./src/server/json-server.ts",
"watch": "npm run clean && ng build --watch --configuration development",
"reset:repo": "git clean -f -X -d"
},
"dependencies": {
"@angular/compiler": "~17.0.8",
"@angular/core": "~17.0.8",
"@angular/platform-browser": "~17.0.8",
"@angular/platform-browser-dynamic": "~17.0.8",
"monaco-editor": "npm:@codingame/monaco-editor-treemended@>=1.85.0 <1.86.0",
"monaco-editor-workers": "~0.45.0",
"monaco-languageclient-examples": "~7.3.0",
"rxjs": "~7.8.1",
"vscode-ws-jsonrpc": "~3.1.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-builders/custom-webpack": "17.0.0",
"@angular-devkit/build-angular": "~17.0.8",
"@angular/cli": "17.0.8",
"@angular/compiler-cli": "~17.0.8",
"@typescript-eslint/eslint-plugin": "~6.17.0",
"@typescript-eslint/parser": "~6.17.0",
"@types/node": "~20.10.6",
"@types/react": "~18.2.46",
"@types/vscode": "~1.85.0",
"css-loader": "~6.8.1",
"editorconfig": "~2.0.0",
"eslint": "~8.56.0",
"eslint-config-standard": "~17.1.0",
"eslint-plugin-header": "~3.1.1",
"eslint-plugin-import": "~2.29.0",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-unused-imports": "~3.0.0",
"shx": "~0.3.4",
"style-loader": "~3.3.3",
"ts-node": "~10.9.1",
"tslib": "~2.6.2",
"typescript": "~5.2.2"
},
"overrides": {
"monaco-editor": "$monaco-editor"
},
"resolutions": {
"monaco-editor": "npm:@codingame/monaco-editor-treemended@>=1.85.0 <1.86.0"
},
"volta": {
"node": "20.10.0",
"npm": "10.2.3"
}
}