-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.91 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.91 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
{
"name": "angular-realworld",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"setup": "git submodule init && git submodule update && bun install",
"start": "ng serve",
"build": "ng build",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test --grep-invert @security",
"test:e2e:security": "playwright test --grep @security",
"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}\" \"!realworld/**\"",
"format:check": "prettier --check \"**/*.{ts,html,css,json,md}\" \"!realworld/**\"",
"prepare": "husky install"
},
"engines": {
"node": ">=20.11.1"
},
"private": true,
"dependencies": {
"@angular/animations": "21.1.1",
"@angular/common": "21.1.1",
"@angular/compiler": "21.1.1",
"@angular/core": "21.2.4",
"@angular/forms": "21.1.1",
"@angular/platform-browser": "21.1.1",
"@angular/platform-browser-dynamic": "21.1.1",
"@angular/router": "21.1.1",
"@rx-angular/cdk": "21.0.0",
"@rx-angular/template": "21.0.0",
"marked": "^17.0.1",
"rxjs": "^7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^2.2.2",
"@angular/build": "21.1.1",
"@angular/cli": "21.1.1",
"@angular/compiler-cli": "21.1.1",
"@playwright/test": "^1.58.0",
"@types/marked": "^6.0.0",
"@vitest/ui": "^4.0.18",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"playwright": "^1.58.0",
"prettier": "^3.8.1",
"typescript": "~5.9.3",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{ts,html,css,json,md}": "prettier --write"
}
}