-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.02 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.02 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
{
"name": "federalist-uswds-jekyll",
"version": "1.3.0",
"scripts": {
"build": "bundle exec jekyll build",
"clean": "bundle exec jekyll clean",
"reset": "npx rimraf .git",
"start": "bundle exec jekyll serve",
"validate:library": "node scripts/validate-content-library.js",
"validate:library:offline": "node scripts/validate-content-library.js --offline",
"validate:library:documents": "node scripts/validate-content-library.js --documents-only",
"validate:library:frontmatter": "node scripts/validate-content-library.js --front-matter-only",
"ng": "ng",
"build:art:local": "ng build --configuration local --base-href=/art/",
"start:ang": "ng serve --configuration development",
"build:ang": "ng build --configuration dev",
"watch": "ng build --watch --configuration development",
"test:ang": "ng test",
"test:a11y": "pa11y-ci --sitemap http://localhost:4000/sitemap.xml --config .pa11yci",
"test:html": "html-validate \"_site/**/*.html\"",
"fix:html": "node scripts/fix-html-validation-style.mjs --write",
"check:html:style": "node scripts/fix-html-validation-style.mjs --check",
"check:links": "npm run check:links:pr",
"check:links:pr": "npm run build && node scripts/check-links.mjs index.html linkinator.offline.config.json",
"check:links:offline": "npm run check:links:pr",
"check:links:offline:all": "npm run build && node scripts/check-links.mjs \"**/*.html\" linkinator.offline.config.json",
"check:links:online": "npm run build && node scripts/check-links.mjs \"**/*.html\" linkinator.online.config.json",
"federalist": " bash ./angular-build.sh; "
},
"dependencies": {
"@angular/animations": "^20.3.19",
"@angular/common": "^20.3.19",
"@angular/compiler": "^20.3.19",
"@angular/core": "^20.3.19",
"@angular/forms": "^20.3.19",
"@angular/platform-browser": "^20.3.19",
"@angular/platform-browser-dynamic": "^20.3.19",
"@angular/router": "^20.3.19",
"@fortawesome/fontawesome-free": "~6.2.0",
"@uswds/uswds": "3.7.1",
"clipboard-copy": "^4.0.1",
"docx": "^8.5.0",
"html-validate": "^10.13.1",
"jszip": "^3.10.1",
"linkinator": "^7.6.1",
"nanoid": "^5.1.3",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.3.25",
"@angular/cli": "~20.3.25",
"@angular/compiler-cli": "^20.3.19",
"@types/jasmine": "~4.0.0",
"gray-matter": "^4.0.3",
"jasmine-core": "~4.3.0",
"js-yaml": "^4.1.1",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"rimraf": "^3.0.2",
"typescript": "~5.8.3"
},
"overrides": {
"docx": {
"nanoid": "^5.0.9"
},
"pa11y-ci": {
"lodash": "^4.18.1"
},
"sockjs": {
"uuid": "^14.0.0"
},
"postcss": "^8.5.12",
"serialize-javascript": "^7.0.5"
},
"engines": {
"node": "^22.16.0",
"npm": "^10.9.2"
}
}