-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.44 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.44 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
{
"name": "ci-cd-test-automation",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "vitest",
"test:ui": "vitest --ui",
"e2e": "start-server-and-test start http://localhost:4200 test:e2e",
"test:e2e": "playwright test"
},
"private": true,
"dependencies": {
"@analogjs/vite-plugin-angular": "^1.21.1",
"@angular/cdk": "^20.2.7",
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/forms": "^20.0.0",
"@angular/material": "^20.2.7",
"@angular/platform-browser": "^20.0.0",
"@angular/router": "^20.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@analogjs/vitest-angular": "^1.21.1",
"@angular-devkit/build-angular": "^20.3.3",
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/platform-browser-dynamic": "^20.3.2",
"@playwright/test": "^1.56.0",
"@testing-library/angular": "^18.0.0",
"@testing-library/jest-dom": "^6.8.0",
"@types/jasmine": "~5.1.0",
"@vitest/ui": "^3.2.4",
"jasmine-core": "~5.7.0",
"jsdom": "^27.0.0",
"karma-coverage": "~2.2.0",
"start-server-and-test": "^2.1.2",
"typescript": "~5.8.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}