forked from sa-sel/site-bixos-2025
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.65 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
{
"name": "site",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --prod",
"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.2.14",
"@angular/common": "^18.2.14",
"@angular/compiler": "^18.2.14",
"@angular/core": "^18.2.14",
"@angular/forms": "^18.2.14",
"@angular/platform-browser": "^18.2.14",
"@angular/platform-browser-dynamic": "^18.2.14",
"@angular/router": "^18.2.14",
"@npmcli/package-json": "^7.0.4",
"@types/ws": "^8.5.10",
"bootstrap": "^5.3.3",
"ngx-bootstrap": "^18.1.3",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "^0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.14",
"@angular/cli": "^18.2.14",
"@angular/compiler-cli": "^18.2.14",
"@types/bootstrap": "^5.2.10",
"@types/jasmine": "~5.1.5",
"@types/node": "^22.19.5",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^8.57.0",
"husky": "^9.1.7",
"jasmine-core": "~5.5.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"typescript": "~5.5.4"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.55.1"
}
}