-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.45 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.45 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "angular-starter-project",
"version": "1.1.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"prepare": "is-ci || husky",
"lint": "eslint \"src/**/*.{ts,js,html}\"",
"lint:fix": "eslint \"src/**/*.{ts,js,html}\" --fix",
"format": "prettier --write \"**/*.{ts,html,scss,css,json,md,yml,yaml}\" --ignore-path .prettierignore",
"format:check": "prettier --check \"**/*.{ts,html,scss,css,json,md,yml,yaml}\" --ignore-path .prettierignore",
"test": "jest",
"test:watchAll": "jest --watchAll",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:patch": "standard-version --release-as patch",
"release:dry-run": "standard-version --dry-run"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"dependencies": {
"@angular/cdk": "^20.2.14",
"@angular/common": "^20.3.0",
"@angular/compiler": "^20.3.0",
"@angular/core": "^20.3.0",
"@angular/forms": "^20.3.0",
"@angular/material": "^20.2.14",
"@angular/platform-browser": "^20.3.0",
"@angular/router": "^20.3.0",
"@ngrx/effects": "^20.1.0",
"@ngrx/entity": "^20.1.0",
"@ngrx/store": "^20.1.0",
"@ngrx/store-devtools": "^20.1.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular/build": "^20.3.2",
"@angular/cli": "^20.3.2",
"@angular/compiler-cli": "^20.3.0",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@types/jest": "^30.0.0",
"angular-eslint": "^20.5.0",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"jest-environment-jsdom": "^30.2.0",
"jest-preset-angular": "^15.0.3",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "~5.9.2",
"typescript-eslint": "^8.46.2"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{scss,css,md,html,json,yml,yaml}": "prettier --write"
}
}