-
-
Notifications
You must be signed in to change notification settings - Fork 587
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.24 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.24 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
{
"name": "jira-clone-angular-frontend",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "vitest run",
"test:watch": "vitest",
"test-cover": "vitest run --coverage",
"lint": "ng lint",
"lint:fix": "ng lint --fix=true",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.3.18",
"@angular/cdk": "^20.2.14",
"@angular/common": "^20.3.18",
"@angular/compiler": "^20.3.18",
"@angular/core": "^20.3.18",
"@angular/forms": "^20.3.18",
"@angular/platform-browser": "^20.3.18",
"@angular/platform-browser-dynamic": "^20.3.18",
"@angular/router": "^20.3.18",
"@ant-design/icons-angular": "^20.0.0",
"@ctrl/tinycolor": "^4.2.0",
"@datorama/akita": "^7.1.1",
"@datorama/akita-ng-entity-service": "^7.0.0",
"@ngneat/content-loader": "^7.0.0",
"@ngneat/until-destroy": "^8.0.3",
"@sentry/angular": "^9.30.0",
"@sentry/tracing": "^6.18.1",
"date-fns": "^2.14.0",
"ng-zorro-antd": "^20.4.4",
"ngx-quill": "^28.0.2",
"quill": "^2.0.3",
"rxjs": "^7.8.1",
"tslib": "^2.0.0",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^2.3.1",
"@analogjs/vitest-angular": "^2.3.1",
"@angular-eslint/builder": "20.7.0",
"@angular-eslint/eslint-plugin": "20.7.0",
"@angular-eslint/eslint-plugin-template": "20.7.0",
"@angular-eslint/schematics": "20.7.0",
"@angular-eslint/template-parser": "20.7.0",
"@angular/build": "^20.3.21",
"@angular/cli": "^20.3.21",
"@angular/compiler-cli": "^20.3.18",
"@datorama/akita-ng-router-store": "^7.0.0",
"@datorama/akita-ngdevtools": "^7.0.0",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"angular-eslint": "^21.3.1",
"eslint": "^9.28.0",
"husky": "^5.0.9",
"jsdom": "^29.0.1",
"lint-staged": "^10.5.4",
"tailwindcss": "^3.4.17",
"ts-node": "~9.1.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "npm run lint:fix"
}
}