-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.68 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
{
"name": "uswds-design-patterns",
"license": "CC0-1.0",
"homepage": "https://github.com/facioquo/uswds-design-patterns",
"repository": "https://github.com/facioquo/uswds-design-patterns",
"bugs": "https://github.com/facioquo/uswds-design-patterns/issues",
"author": "FaciōQuō (http://facioquo.com)",
"scripts": {
"ng": "ng",
"start": "ng serve --open --live-reload",
"start:test": "ng serve --port=4200 --live-reload=false",
"build": "ng build --configuration=development",
"build.prod": "ng build --configuration=production",
"watch": "ng build --configuration=development --watch",
"clean": "rm -rf node_modules && rm -f pnpm-lock.yaml package-lock.json yarn.lock",
"lint": "npm run lint:md && npm run lint:ts && npm run lint:prettier",
"lint:fix": "npm run lint:md:fix && npm run lint:ts:fix && npm run lint:prettier:fix",
"lint:md": "npx markdownlint-cli2",
"lint:md:fix": "npx markdownlint-cli2 --fix",
"lint:prettier": "prettier --check .",
"lint:prettier:fix": "prettier --write .",
"lint:ts": "eslint .",
"lint:ts:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"e2e": "playwright test",
"e2e:headed": "playwright test --headed",
"e2e:ui": "playwright test --ui",
"e2e:report": "playwright show-report",
"verify": "npm run lint && npm run build && npm run test:coverage && npm run e2e"
},
"packageManager": "npm@11.16.0",
"engines": {
"node": ">=24"
},
"dependencies": {
"@angular/animations": "21.2.15",
"@angular/common": "21.2.15",
"@angular/compiler": "21.2.15",
"@angular/core": "21.2.15",
"@angular/forms": "21.2.15",
"@angular/platform-browser": "21.2.15",
"@angular/platform-browser-dynamic": "21.2.15",
"@angular/router": "21.2.15",
"@uswds/uswds": "3.13.0",
"rxjs": "7.8.2",
"tslib": "2.8.1",
"zone.js": "0.16.2"
},
"devDependencies": {
"@analogjs/vitest-angular": "^2.5.2",
"@eslint/js": "^10.0.1",
"@angular/build": "^21.2.13",
"@angular/cli": "21.2.13",
"@angular/compiler-cli": "21.2.15",
"@playwright/test": "^1.60.0",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^4.1.7",
"angular-eslint": "21.4.0",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsonc": "^3.2.0",
"jsdom": "^29.1.1",
"jsonc-eslint-parser": "^3.1.0",
"prettier": "^3.8.3",
"typescript": "5.9.3",
"typescript-eslint": "^8.60.0",
"vitest": "^4.1.7"
},
"allowScripts": {
"@parcel/watcher": false,
"esbuild": false,
"lmdb": false,
"msgpackr-extract": false
}
}