-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 2.24 KB
/
package.json
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
{
"name": "11ty-uswds-template",
"version": "0.0.1",
"description": "A 11ty UWDS 3 template.",
"main": "index.js",
"scripts": {
"build": "npm run assets:build && npx @11ty/eleventy",
"assets:autoprefix": "postcss _site/assets/styles/*.css -r --use autoprefixer",
"assets:build": "node ./config/buildAssets && npm run assets:autoprefix",
"assets:clean": "rimraf _site/assets",
"assets:refresh": "npm run assets:clean && npm run assets:build",
"assets:watch": "chokidar 'js/**' 'styles/**' -c 'npm run assets:refresh' --polling",
"clean": "rimraf _site",
"dev": "npm run clean && npm-run-all -p dev:assets dev:serve",
"dev:clean": "npm run clean && npm run dev",
"dev:assets": "npm run assets:refresh && npm run assets:watch",
"dev:debug": "DEBUG=* npx @11ty/eleventy --serve --watch",
"dev:serve": "npx @11ty/eleventy --serve --watch",
"federalist": "npm run build && bin/conditional_minify.bash",
"pa11y-ci": "npx start-server-and-test start 8080 pa11y-ci:local",
"pa11y-ci:local": "pa11y-ci http://localhost:8080",
"serve": "npx @11ty/eleventy --serve",
"start": "npx @11ty/eleventy --serve",
"test": "jest --json --coverage --testLocationInResults --outputFile=report.json"
},
"author": "",
"license": "CC0-1.0",
"devDependencies": {
"@11ty/eleventy": "^3.0.0-beta.1",
"@11ty/eleventy-img": "^3.1.8",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@axe-core/cli": "^4.10.0",
"autoprefixer": "^10.4.2",
"chokidar-cli": "^3.0.0",
"clean-css": "^5.3.3",
"clean-css-cli": "^5.6.3",
"dotenv": "^16.4.5",
"eleventy-plugin-svg-sprite": "^2.4.2",
"esbuild": "^0.14.25",
"esbuild-sass-plugin": "^2.2.4",
"jest": "^29.7.0",
"html-minifier-terser": "^7.2.0",
"js-yaml": "^4.1.0",
"luxon": "^2.5.2",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^8.4.1",
"npm-run-all": "^4.1.5",
"pa11y": "^8.0.0",
"postcss": "^8.4.31",
"postcss-cli": "^9.1.0",
"rimraf": "^3.0.2",
"start-server-and-test": "^2.0.3",
"terser": "^5.36.0"
},
"dependencies": {
"@uswds/uswds": "3.8.1"
},
"overrides": {
"eleventy-plugin-svg-sprite": {
"svg-sprite": ">=2.0.4"
}
}
}