-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
97 lines (97 loc) · 3.49 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "obd2-mqtt",
"author": "René Adler (eagle)",
"license": "GPL-3.0",
"scripts": {
"ng": "ng",
"start": "ng serve obd2-mqtt-ui --host 0.0.0.0",
"build": "ng build obd2-mqtt-ui",
"test": "ng test --watch=false --code-coverage --no-progress",
"test:ci": "ng test --watch=false --code-coverage --no-progress --browsers=ChromeHeadlessCI",
"lint": "ng lint",
"build:esp-wt": "webpack --config tools/esp-web-tools/webpack.config.js --mode=production --node-env=production",
"build:esp-wt:dev": "webpack --config tools/esp-web-tools/webpack.config.js --mode=development",
"build:esp-wt:prod": "webpack --config tools/esp-web-tools/webpack.config.js --mode=production --node-env=production",
"watch:esp-wt": "webpack --config tools/esp-web-tools/webpack.config.js --watch",
"serve:esp-wt": "webpack serve --config tools/esp-web-tools/webpack.config.js",
"build:manifest": "ts-node tools/esp-web-tools/src/build-manifest.ts --dist ./docs/"
},
"browserslist": [
"last 2 Chrome versions",
"last 1 Firefox version",
"last 2 Edge major versions",
"last 2 Safari major versions",
"last 2 iOS major versions",
"Firefox ESR"
],
"private": true,
"dependencies": {
"@angular/animations": "19.1.4",
"@angular/common": "19.1.4",
"@angular/compiler": "19.1.4",
"@angular/core": "19.1.4",
"@angular/forms": "19.1.4",
"@angular/localize": "19.1.4",
"@angular/platform-browser": "19.1.4",
"@angular/platform-browser-dynamic": "19.1.4",
"@angular/router": "19.1.4",
"@ng-bootstrap/ng-bootstrap": "^18.0.0",
"rxjs": "^7.4.0",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^19.0.0",
"@angular-devkit/architect": "^0.1901.5",
"@angular-devkit/build-angular": "19.1.5",
"@angular-eslint/builder": "19.0.2",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/schematics": "19.0.2",
"@angular-eslint/template-parser": "19.0.2",
"@angular/cli": "19.1.5",
"@angular/compiler-cli": "19.1.4",
"@angular/language-service": "19.1.4",
"@types/jasmine": "^5.1.5",
"@types/node": "^22.12.0",
"@typescript-eslint/eslint-plugin": "8.22.0",
"@typescript-eslint/parser": "8.22.0",
"angular-ide": "^0.9.77",
"browser-sync": "^3.0.3",
"codelyzer": "^6.0.0",
"compression-webpack-plugin": "^11.1.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"domhandler": "^5.0.3",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.30.0",
"html-webpack-plugin": "^5.6.3",
"image-minimizer-webpack-plugin": "^4.1.3",
"imagemin": "^9.0.0",
"imagemin-giflossy": "^5.1.10",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^10.0.0",
"imagemin-svgo": "^11.0.1",
"jasmine-core": "^5.5.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",
"mini-css-extract-plugin": "^2.9.2",
"p-limit": "^6.2.0",
"prettier": "^2.8.8",
"sass": "^1.83.4",
"sass-loader": "^16.0.4",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0"
}
}