-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·94 lines (94 loc) · 3.42 KB
/
package.json
File metadata and controls
executable file
·94 lines (94 loc) · 3.42 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "angularexampleapp",
"version": "21.0.0",
"type": "module",
"scripts": {
"prepare": "husky",
"start": "ng serve --configuration=localhost-en --open",
"start:es": "ng serve --configuration=localhost-es --open",
"extract": "ng extract-i18n --format=xlf --output-path=src/locale",
"format:check": "prettier --check \"**/*.{ts,js,json,html,css,scss,md,mdx}\"",
"format:fix": "prettier --write \"**/*.{ts,js,json,html,css,scss,md,mdx}\"",
"lint": "ng lint && stylelint \"**/*.{css,scss}\"",
"test": "ng test --no-watch",
"test:watch": "ng test",
"test:coverage": "ng test --coverage --no-watch",
"e2e:local": "BASE_URL=http://localhost:4200 playwright test --project=chromium",
"e2e:pro": "playwright test --project=chromium",
"playwright:install": "playwright install && playwright install-deps",
"build": "ng build",
"build:serve": "npm run build && http-serve dist/angularexampleapp/browser -p 4200",
"build:stats": "ng build --configuration=production-sourcemaps --stats-json",
"script:e2e:local": "node scripts/e2e.js",
"script:lighthouse": "node scripts/lighthouse.js",
"verify": "npm run format:check && npm run test && npm run script:e2e:local && npm run build && npm run script:lighthouse"
},
"dependencies": {
"@angular/animations": "21.0.0",
"@angular/common": "21.0.0",
"@angular/compiler": "21.0.0",
"@angular/core": "21.0.0",
"@angular/forms": "21.0.0",
"@angular/localize": "21.0.0",
"@angular/platform-browser": "21.0.0",
"@angular/platform-browser-dynamic": "21.0.0",
"@angular/platform-server": "21.0.0",
"@angular/router": "21.0.0",
"@angular/ssr": "21.0.0",
"@shoelace-style/shoelace": "2.20.1",
"rxjs": "7.8.2",
"tslib": "2.8.1"
},
"devDependencies": {
"@angular-eslint/builder": "20.6.0",
"@angular-eslint/eslint-plugin": "20.6.0",
"@angular-eslint/eslint-plugin-template": "20.6.0",
"@angular-eslint/schematics": "20.6.0",
"@angular-eslint/template-parser": "20.6.0",
"@angular/build": "21.0.0",
"@angular/cli": "21.0.0",
"@angular/compiler-cli": "21.0.0",
"@commitlint/cli": "20.1.0",
"@commitlint/config-conventional": "20.0.0",
"@eslint/js": "9.39.1",
"@playwright/test": "1.56.1",
"@types/node": "24.10.1",
"@typescript-eslint/eslint-plugin": "8.47.0",
"@typescript-eslint/parser": "8.47.0",
"@typescript-eslint/types": "8.47.0",
"@typescript-eslint/utils": "8.47.0",
"@vitest/coverage-v8": "4.0.13",
"angular-eslint": "20.6.0",
"axe-core": "4.11.0",
"chrome-launcher": "1.2.1",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-unicorn": "62.0.0",
"http-serve": "1.0.1",
"husky": "9.1.7",
"jsdom": "27.2.0",
"lighthouse": "13.0.1",
"ng-extract-i18n-merge": "3.2.0",
"playwright": "1.56.1",
"postcss-scss": "4.0.9",
"prettier": "3.6.2",
"prettier-eslint": "16.4.2",
"stylelint": "16.26.0",
"stylelint-config-recess-order": "7.4.0",
"stylelint-config-standard-scss": "16.0.0",
"stylelint-order": "7.0.0",
"ts-loader": "9.5.4",
"typescript": "5.9.3",
"typescript-eslint": "8.47.0",
"vitest": "4.0.13",
"wait-on": "9.0.3"
},
"engines": {
"node": ">=22.19 <24",
"npm": ">=9.0.0"
},
"private": true
}