-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.42 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.42 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
{
"name": "user-dashboard-angular",
"version": "0.0.0",
"type": "module",
"scripts": {
"ng": "ng",
"prepare": "husky",
"start": "ng serve",
"build": "ng build",
"build:pages": "ng build --configuration production --base-href /user-dashboard-angular/",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:ci": "ng test --watch=false",
"lint": "eslint src --ext .ts --ignore-pattern '*.spec.ts'",
"lint:fix": "eslint src --ext .ts --ignore-pattern '*.spec.ts' --fix",
"check": "npm run lint && npm run test:ci"
},
"private": true,
"packageManager": "npm@11.12.1",
"dependencies": {
"@angular/cdk": "^21.2.11",
"@angular/common": "^21.2.0",
"@angular/compiler": "^21.2.0",
"@angular/core": "^21.2.0",
"@angular/forms": "^21.2.0",
"@angular/platform-browser": "^21.2.0",
"@angular/router": "^21.2.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular-eslint/eslint-plugin": "^21.4.0",
"@angular-eslint/eslint-plugin-template": "^21.4.0",
"@angular/build": "^21.2.7",
"@angular/cli": "^21.2.7",
"@angular/compiler-cli": "^21.2.0",
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^10.3.0",
"husky": "^9.1.7",
"jsdom": "^28.0.0",
"prettier": "^3.8.1",
"typescript": "~5.9.2",
"typescript-eslint": "^8.59.3",
"vitest": "^4.0.8"
}
}