-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
81 lines (81 loc) · 2.5 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@open-amt-cloud-toolkit/sample-web-ui",
"version": "3.30.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-enterprise": "ng build --configuration=enterprise",
"test": "ng test",
"test-ci": "ng test --no-watch --no-progress",
"lint": "ng lint",
"prettify": "npx prettier --write '**/*.{ts,js,yaml,css,scss,json}'",
"ci-prettify": "npx prettier --check '**/*.{ts,js,yaml,css,scss,json}'",
"e2e": "ng e2e",
"cypress-install": "cypress install",
"cypress": "cypress open",
"cy-runner": "cypress run",
"lint:cypress": "eslint ./cypress"
},
"private": true,
"dependencies": {
"@angular/animations": "~19.1.2",
"@angular/cdk": "~19.1.0",
"@angular/common": "~19.1.2",
"@angular/compiler": "~19.1.2",
"@angular/core": "~19.1.2",
"@angular/forms": "~19.1.2",
"@angular/material": "~19.1.0",
"@angular/platform-browser": "~19.1.2",
"@angular/platform-browser-dynamic": "~19.1.2",
"@angular/router": "~19.1.2",
"@open-amt-cloud-toolkit/ui-toolkit-angular": "^9.1.0",
"esbuild": "^0.24.2",
"moment": "^2.30.1",
"monaco-editor": "^0.50.0",
"ngx-moment": "^6.0.2",
"ngx-monaco-editor-v2": "^18.1.0",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"@xterm/xterm": "^5.5.0",
"zone.js": "~0.15.0"
},
"overrides": {
"ngx-monaco-editor-v2": {
"@angular/common": "latest",
"@angular/core": "latest"
}
},
"devDependencies": {
"@angular-devkit/build-angular": "~19.1.3",
"@angular-eslint/builder": "~19.0.2",
"@angular-eslint/schematics": "~19.0.2",
"@angular-eslint/template-parser": "~19.0.2",
"@angular/cli": "~19.1.3",
"@angular/compiler-cli": "~19.1.2",
"@angular/localize": "~19.1.2",
"@types/jasmine": "~5.1.5",
"@types/node": "^22.10.7",
"angular-eslint": "19.0.2",
"cypress": "^13.17.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-license-header": "^0.6.1",
"jasmine-core": "~5.5.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-junit-reporter": "^2.0.1",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-multiline-arrays": "^4.0.2",
"ts-node": "~10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"optionalDependencies": {
"cypress": "^13.17.0"
}
}