-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·102 lines (102 loc) · 3.96 KB
/
package.json
File metadata and controls
executable file
·102 lines (102 loc) · 3.96 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
95
96
97
98
99
100
101
102
{
"name": "angularexampleapp",
"version": "21.0.0",
"type": "module",
"scripts": {
"prepare": "npx 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",
"prettier:write": "prettier --write \"**/*.{ts,js,json,html,css,scss,md,mdx}\"",
"stylelint:check": "npx stylelint \"**/*.{css,scss}\"",
"stylelint:fix": "npx stylelint \"**/*.{css,scss}\" --fix",
"lint": "ng lint && npm run stylelint:check",
"test": "ng test --no-watch",
"test:watch": "ng test",
"test:coverage": "ng test --coverage --no-watch",
"playwright:install": "npx playwright install && npx playwright install-deps",
"playwright": "npx playwright test --project=chromium",
"test:e2e:local:serve": "npm run playwright:install && node scripts/e2e.mjs",
"test:smoke:local": "npm run playwright:install && BASE_URL=http://localhost:4200 npm run playwright",
"test:smoke:dev": "npm run playwright:install && exit 0",
"build": "ng build",
"build:serve": "npm run build && http-serve dist/angularexampleapp/browser -p 4200",
"build:stats": "ng build --configuration=production-sourcemaps --stats-json",
"build:lighthouse": "ng build --configuration=lighthouse",
"update:es:base:href": "sed -i '' 's|<base href=\"/es/\">|<base href=\"/\">|g' dist/lighthouse/es/index.html",
"lighthouse": "npm run build:lighthouse && npm run update:es:base:href && node scripts/lighthouse.mjs",
"verify:test": "npm run lint && npm run test:coverage && npm run test:e2e:local:serve && npm run build",
"verify:all": "npm run verify:test && npm run lighthouse"
},
"dependencies": {
"@angular/animations": "21.1.5",
"@angular/cdk": "21.1.1",
"@angular/common": "21.1.5",
"@angular/compiler": "21.1.5",
"@angular/core": "21.1.5",
"@angular/forms": "21.1.5",
"@angular/localize": "21.1.5",
"@angular/platform-browser": "21.1.5",
"@angular/platform-browser-dynamic": "21.1.5",
"@angular/platform-server": "21.1.5",
"@angular/router": "21.1.5",
"@angular/ssr": "21.1.4",
"@shoelace-style/shoelace": "2.20.1",
"rxjs": "7.8.2",
"tslib": "2.8.1"
},
"devDependencies": {
"@angular-eslint/builder": "21.2.0",
"@angular-eslint/eslint-plugin": "21.2.0",
"@angular-eslint/eslint-plugin-template": "21.2.0",
"@angular-eslint/schematics": "21.2.0",
"@angular-eslint/template-parser": "21.2.0",
"@angular/build": "21.1.5",
"@angular/cli": "21.1.5",
"@angular/compiler-cli": "21.1.5",
"@commitlint/cli": "20.4.1",
"@commitlint/config-conventional": "20.4.2",
"@eslint/js": "9.39.2",
"@playwright/test": "1.58.2",
"@types/node": "25.3.0",
"@typescript-eslint/eslint-plugin": "8.56.0",
"@typescript-eslint/parser": "8.56.0",
"@typescript-eslint/types": "8.56.0",
"@typescript-eslint/utils": "8.56.0",
"@vitest/coverage-v8": "4.0.18",
"angular-eslint": "21.2.0",
"axe-core": "4.11.1",
"baseline-browser-mapping": "^2.10.13",
"chrome-launcher": "1.2.1",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-unicorn": "63.0.0",
"http-serve": "1.0.1",
"husky": "9.1.7",
"jsdom": "28.1.0",
"lighthouse": "13.0.3",
"lint-staged": "16.3.3",
"ng-extract-i18n-merge": "3.2.1",
"playwright": "1.58.2",
"postcss-scss": "4.0.9",
"prettier": "3.8.1",
"prettier-eslint": "^16.3.0",
"stylelint": "17.3.0",
"stylelint-config-recess-order": "7.6.1",
"stylelint-config-standard-scss": "17.0.0",
"stylelint-order": "7.0.1",
"ts-loader": "9.5.4",
"typescript": "5.9.3",
"typescript-eslint": "8.56.0",
"vitest": "4.0.18",
"wait-on": "9.0.4"
},
"engines": {
"node": ">=22.19 <24",
"npm": ">=9.0.0"
},
"private": true
}