-
-
Notifications
You must be signed in to change notification settings - Fork 194
/
Copy pathpackage.json
48 lines (48 loc) · 1.55 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
{
"name": "mlc-verify-angular",
"version": "0.0.0",
"private": "true",
"type": "module",
"engines": {
"node": ">=18.19.0",
"npm": ">=10.2.3"
},
"volta": {
"node": "22.14.0",
"npm": "10.9.2"
},
"dependencies": {
"@angular/compiler": "~18.2.8",
"@angular/core": "~18.2.8",
"@angular/platform-browser": "~18.2.8",
"@angular/platform-browser-dynamic": "~18.2.8",
"@codingame/monaco-vscode-editor-api": "~14.0.6",
"monaco-editor-wrapper": "~6.5.0",
"monaco-languageclient-examples": "~2025.3.3",
"rxjs": "~7.8.1",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-builders/custom-esbuild": "~18.0.0",
"@angular/cli": "~18.2.8",
"@angular/compiler-cli": "~18.2.8",
"@codingame/esbuild-import-meta-url-plugin": "~1.0.3",
"@types/node": "~22.13.1",
"css-loader": "~7.1.2",
"shx": "~0.3.4",
"style-loader": "~4.0.0",
"typescript": "~5.5.4"
},
"scripts": {
"verify": "npm install && npm run start",
"verify:ci": "npm install && npm run build",
"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",
"build:production": "npm run build:msg && npm run clean && ng build --configuration production",
"start": "npm run clean && ng serve",
"start:production": "npm run clean && ng serve --configuration production",
"watch": "npm run clean && ng build --watch --configuration development",
"reset:repo": "git clean -f -X -d"
}
}