-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (45 loc) · 1.29 KB
/
package.json
File metadata and controls
46 lines (45 loc) · 1.29 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
{
"name": "angular-ideal-setup",
"version": "1.0.0",
"description": "Angular project structure",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed"
},
"private": true,
"dependencies": {
"@angular/common": "^21.0.2",
"@angular/compiler": "^21.0.2",
"@angular/core": "^21.0.2",
"@angular/forms": "^21.0.2",
"@angular/platform-browser": "^21.0.2",
"@angular/platform-browser-dynamic": "^21.0.2",
"@angular/router": "^21.0.2",
"@ngrx/effects": "^20.1.0",
"@ngrx/store": "^20.1.0",
"rxjs": "~7.8.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.0.2",
"@angular/cli": "^21.0.2",
"@angular/compiler-cli": "^21.0.2",
"@analogjs/vitest-angular": "^1.2.0",
"@playwright/test": "^1.48.0",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^2.1.0",
"@vitest/ui": "^2.1.0",
"jsdom": "^24.0.0",
"typescript": "~5.9.0",
"vitest": "^2.1.0"
}
}