-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.84 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
{
"name": "site",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --configuration production --base-href https://fernandoczanchetta.github.io/SEL0373/",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "npx eslint . && npx prettier -c .",
"format": "npx eslint --fix .; npx prettier --write .",
"precommit": "npm lint-staged && npm lint"
},
"lint-staged": {
"*.{ts,js,json,scss,sass,css,md}": [
"npx eslint --fix .",
"npx prettier --write .",
"git add"
]
},
"private": true,
"dependencies": {
"@angular/animations": "^18.0.3",
"@angular/common": "^18.0.3",
"@angular/compiler": "^18.0.3",
"@angular/core": "^18.0.3",
"@angular/forms": "^18.0.3",
"@angular/platform-browser": "^18.0.3",
"@angular/platform-browser-dynamic": "^18.0.3",
"@angular/router": "^18.0.3",
"@npmcli/package-json": "^5.2.0",
"@types/ws": "^8.5.4",
"bootstrap": "^5.3.3",
"chart.js": "^4.4.3",
"glob": "^10.4.1",
"mongodb": "^6.7.0",
"ng-apexcharts": "^1.11.0",
"ngx-bootstrap": "^12.0.0",
"ngx-mqtt": "^17.0.0",
"rxjs": "~7.4.0",
"tslib": "^2.3.0",
"util": "^0.12.5",
"zone.js": "^0.14.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.4",
"@angular/cli": "^18.0.4",
"@angular/compiler-cli": "^18.0.3",
"@types/bootstrap": "^5.1.9",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.20.43",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.7.0",
"husky": "^7.0.4",
"jasmine-core": "~3.10.0",
"lint-staged": "^12.2.0",
"prettier": "^2.5.1",
"typescript": "~5.4.5"
},
"overrides": {
"autoprefixer": "10.4.5"
}
}