-
Notifications
You must be signed in to change notification settings - Fork 688
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.1 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.1 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
{
"name": "angular-testing-course",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config ./proxy.json",
"server": "ts-node -P ./server/server.tsconfig.json ./server/server.ts",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"build:prod": "ng build --prod",
"start:prod": "http-server ./dist -a localhost -p 4200",
"build-and-start:prod": "run-s build:prod start:prod",
"e2e": "start-server-and-test build-and-start:prod http://localhost:4200 cypress:run"
},
"private": true,
"dependencies": {
"@angular/animations": "20.0.1",
"@angular/cdk": "^20.0.2",
"@angular/common": "20.0.1",
"@angular/compiler": "20.0.1",
"@angular/core": "20.0.1",
"@angular/forms": "20.0.1",
"@angular/material": "^20.0.2",
"@angular/material-moment-adapter": "20.0.2",
"@angular/platform-browser": "20.0.1",
"@angular/platform-browser-dynamic": "20.0.1",
"@angular/router": "20.0.1",
"body-parser": "^2.2.0",
"core-js": "^3.42.0",
"cors": "^2.8.5",
"cypress": "^14.4.1",
"express": "^5.1.0",
"http-server": "^14.1.1",
"moment": "^2.30.1",
"npm-run-all": "^4.1.5",
"rxjs": "7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.0.1",
"@angular/cli": "^20.0.1",
"@angular/compiler-cli": "20.0.1",
"@angular/language-service": "20.0.1",
"@cypress/webpack-preprocessor": "^6.0.4",
"@types/express": "^5.0.2",
"@types/jasmine": "~5.1.8",
"@types/jasminewd2": "~2.0.13",
"@types/node": "^22.15.29",
"jasmine-core": "~5.7.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-cli": "~2.0.0",
"karma-coverage": "~2.2.1",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"start-server-and-test": "^2.0.12",
"ts-node": "~10.9.2",
"typescript": "~5.8.3"
}
}