-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.59 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.59 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
{
"name": "esp-rowing-monitor-client",
"version": "7.1.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"remote": "ng serve --build-target esp-rowing-monitor-client:build:development,remote --serve-path /ESPRM/ --allowed-hosts --ssl",
"build": "npm run build:prepare && ng build",
"dev": "npm run build:prepare && ng build && npx http-server -p 4201 dist/esp-rowing-monitor-client/browser",
"dev-remote": "npm run build:prepare && ng build --base-href=/ESPRM-prod/ && npx http-server -p 4201 dist/esp-rowing-monitor-client/browser",
"serve": "ng build --base-href=/ESPRM-prod/ && npx http-server -p 4201 dist/esp-rowing-monitor-client/browser",
"serve-remote": "ng build --base-href=/ESPRM-prod/ && npx http-server -p 4201 dist/esp-rowing-monitor-client/browser",
"build:prepare": "npm run build:tools && node out-tsc/tools/auto-version.js && node out-tsc/tools/fetch-profiles.js",
"build:tools": "tsc -p tools/tsconfig.json",
"watch": "ng build --watch --configuration development",
"test": "npm run test:tools && ng test --watch=false",
"test:tools": "vitest run tools/",
"generate-version": "npm run build:tools && node out-tsc/tools/auto-version.js",
"fetch-profiles": "npm run build:tools && node out-tsc/tools/fetch-profiles.js"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.2.4",
"@angular/cdk": "^21.2.2",
"@angular/common": "^21.2.4",
"@angular/compiler": "^21.2.4",
"@angular/core": "^21.2.4",
"@angular/forms": "^21.2.4",
"@angular/material": "^21.2.2",
"@angular/platform-browser": "^21.2.4",
"@angular/platform-browser-dynamic": "^21.2.4",
"@angular/router": "^21.2.4",
"@angular/service-worker": "^21.2.4",
"@zakj/no-sleep": "^0.13.6",
"chart.js": "^4.5.1",
"chartjs-plugin-datalabels": "^2.2.0",
"chartjs-plugin-zoom": "^2.2.0",
"dexie": "^4.3.0",
"dexie-export-import": "^4.1.4",
"fflate": "^0.8.2",
"hammerjs": "^2.0.8",
"js-md5": "^0.8.3",
"js2xmlparser": "^5.0.0",
"ng2-charts": "^10.0.0",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"web-ant-plus": "~2.0.0"
},
"devDependencies": {
"@angular-eslint/eslint-plugin": "^21.3.0",
"@angular-eslint/eslint-plugin-template": "^21.3.0",
"@angular-eslint/template-parser": "^21.3.0",
"@angular/build": "^21.2.2",
"@angular/cli": "^21.2.2",
"@angular/compiler-cli": "^21.2.4",
"@eslint/js": "^9.39.4",
"@smarttools/eslint-plugin-rxjs": "^1.0.22",
"@types/js-md5": "^0.8.0",
"@types/node": "^25.5.0",
"@types/w3c-web-usb": "^1.0.13",
"@types/web-bluetooth": "^0.0.21",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vitest/browser-playwright": "^4.1.0",
"angular-eslint": "^21.3.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.8.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-rxjs-angular-updated": "^1.0.50",
"eslint-plugin-unicorn": "^63.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.4.0",
"jsdom": "^28.1.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vitest": "^4.1.0"
}
}