-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.43 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.43 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "fuesim-digital-frontend",
"version": "0.10.0",
"type": "module",
"scripts": {
"cy:open": "cypress open",
"cy:install": "cypress install",
"cy:run": "cypress run",
"cy:run:firefox": "cypress run --browser firefox",
"cy:run:electron": "cypress run --browser electron",
"cy:run:chromium": "cypress run --browser chromium",
"cy:update-snapshots": "cypress-image-diff -u",
"ng": "ng",
"start": "ng serve --host 127.0.0.1",
"build": "ng build",
"build:deployment": "ng build --configuration deployment",
"watch": "ng build --watch --configuration development",
"lint": "eslint --max-warnings 0 \"./**/*.{ts,js,yml,css,sccs,html,angular}\"",
"lint:fix": "eslint --fix \"./**/*.{ts,js,yml,css,sccs,html,angular}\"",
"test:ci": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --coverage --verbose --ci",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --coverage --verbose",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --verbose --watch"
},
"private": true,
"devEngines": {
"runtime": {
"name": "node",
"version": "~24.13.0",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"version": "~11.6.2",
"onFail": "error"
}
},
"dependencies": {
"@angular/animations": "~21.2.0",
"@angular/common": "~21.2.0",
"@angular/compiler": "~21.2.0",
"@angular/core": "~21.2.0",
"@angular/forms": "~21.2.0",
"@angular/material": "^21.2.0",
"@angular/platform-browser": "~21.2.0",
"@angular/platform-browser-dynamic": "~21.2.0",
"@angular/router": "~21.2.0",
"@ng-bootstrap/ng-bootstrap": "^20.0.0",
"@ngneat/hotkeys": "^4.1.0",
"@ngrx/store": "^21.0.1",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"chart.js": "^4.4.8",
"class-validator": "^0.14.1",
"fuesim-digital-shared": "file:../shared",
"immer": "^10.1.1",
"lodash-es": "^4.17.23",
"ng-qrcode": "^21.0.0",
"ol": "^10.6.1",
"papaparse": "^5.5.3",
"rxjs": "~7.8.0",
"socket.io-client": "^4.8.1",
"tslib": "^2.8.1",
"zod": "^4.1.12",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular/build": "^21.2.0",
"@angular/cli": "~21.2.0",
"@angular/compiler-cli": "~21.2.0",
"@angular/localize": "~21.2.0",
"@eslint/compat": "^1.4.0",
"@eslint/js": "^9.36.0",
"@types/chart.js": "^2.9.41",
"@types/jest": "^30.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.14.0",
"angular-eslint": "21.2.0",
"cypress": "^14.3.0",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-rxjs-angular-x": "^0.0.3",
"eslint-plugin-rxjs-x": "^0.7.7",
"eslint-plugin-unicorn": "^56.0.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"typescript": "~5.9.3",
"typescript-eslint": "^8.55.0"
},
"overrides": {
"@istanbuljs/load-nyc-config": {
"js-yaml": "^4.1.1"
}
}
}