-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.52 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.52 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
{
"name": "csss-site-admin",
"version": "0.0.1",
"scripts": {
"ng": "ng",
"api:url": "openapi-generator-cli generate --generator-key csss-backend",
"api:file": "openapi-generator-cli generate --generator-key csss-backend-file",
"prebuild": "npm run api:file",
"start": "npm run prebuild && ng serve",
"build": "npm run prebuild && ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "eslint ./src --ext .ts --config eslint.config.mjs",
"format": "prettier ./src --write",
"precommit": "npm run lint && npm run format"
},
"private": true,
"dependencies": {
"@angular/cli": "^21.0.4",
"@angular/common": "^21.0.6",
"@angular/compiler": "^21.0.6",
"@angular/core": "^21.0.6",
"@angular/forms": "^21.0.6",
"@angular/platform-browser": "^21.0.6",
"@angular/platform-browser-dynamic": "^21.0.6",
"@angular/router": "^21.0.6",
"@primeuix/themes": "^2.0.2",
"primeicons": "^7.0.0",
"primeng": "^21.0.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "^21.0.4",
"@angular/compiler-cli": "^21.0.6",
"@openapitools/openapi-generator-cli": "^2.23.1",
"@types/jasmine": "~5.1.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"jasmine-core": "~5.6.0",
"jsdom": "^27.4.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0",
"vitest": "^4.0.16"
}
}