-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.01 KB
/
package.json
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
{
"name": "angular-clean-architecture",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest",
"lint": "ng lint",
"prepare": "husky install",
"e2e": "ng e2e",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.0.5",
"@angular/common": "^19.0.5",
"@angular/compiler": "^19.0.5",
"@angular/core": "^19.0.5",
"@angular/forms": "^19.0.5",
"@angular/platform-browser": "^19.0.5",
"@angular/platform-browser-dynamic": "^19.0.5",
"@angular/router": "^19.0.5",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.6",
"@angular/cli": "^19.0.6",
"@angular/compiler-cli": "^19.0.5",
"@cypress/schematic": "^1.6.0",
"@eslint/js": "^9.17.0",
"@ngneat/spectator": "^10.0.0",
"@types/jasmine": "~3.10.0",
"@types/jest": "^29.5.4",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"angular-eslint": "19.0.2",
"cypress": "latest",
"eslint": "^9.16.0",
"husky": "^7.0.4",
"jasmine-core": "~4.0.0",
"jest": "^29.6.4",
"jest-preset-angular": "^14.4.2",
"jsdom": "^25.0.1",
"karma-coverage": "~2.1.0",
"lint-staged": "^12.3.3",
"prettier": "^3.4.2",
"typescript": "~5.6.3",
"typescript-eslint": "8.18.0",
"vitest": "^2.1.8"
},
"jest": {
"preset": "jest-preset-angular",
"transformIgnorePatterns": [
"node_modules/(?!@angular|@ngneat/spectator|array-move|lodash-es)"
],
"setupFilesAfterEnv": [
"<rootDir>/setupJest.ts"
]
},
"prettier": {
"useTabs": false,
"singleQuote": true,
"jsxSingleQuote": false
},
"lint-staged": {
"*.ts": [
"eslint",
"prettier --write",
"git add"
],
"*.scss": [
"prettier --write",
"git add"
]
}
}