-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.74 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
{
"name": "angular-realworld",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"test:e2e:disabled": "cat e2e/DISABLED_TESTS.md",
"format": "prettier --write \"**/*.{ts,html,css,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,html,css,json,md}\"",
"prepare": "husky install"
},
"engines": {
"node": ">=20.11.1"
},
"private": true,
"dependencies": {
"@angular/animations": "20.3.9",
"@angular/common": "20.3.9",
"@angular/compiler": "20.3.9",
"@angular/core": "20.3.16",
"@angular/forms": "20.3.9",
"@angular/platform-browser": "20.3.9",
"@angular/platform-browser-dynamic": "20.3.9",
"@angular/router": "20.3.9",
"@rx-angular/cdk": "20.0.0",
"@rx-angular/template": "20.0.0",
"marked": "^16.4.1",
"rxjs": "^7.4.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^1.22.4",
"@angular/build": "20.3.9",
"@angular/cli": "20.3.9",
"@angular/compiler-cli": "20.3.9",
"@playwright/test": "^1.56.1",
"@types/marked": "^6.0.0",
"@vitest/ui": "^3.2.4",
"husky": "^8.0.3",
"jsdom": "^27.1.0",
"lint-staged": "^16.1.2",
"playwright": "^1.56.1",
"prettier": "^3.1.1",
"typescript": "~5.9.3",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{ts,html,css,json,md}": "prettier --write"
}
}