-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.9 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
{
"name": "10x-website",
"version": "2.0.1",
"scripts": {
"build": "npm run assets:build && npx @11ty/eleventy",
"assets:autoprefix": "postcss _site/assets/styles/*.css -r",
"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 '_includes/theme/js/**' '_includes/theme/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 && ELEVENTY_ENV=production npm run assets:autoprefix",
"serve": "npx @11ty/eleventy --serve",
"start": "npx @11ty/eleventy --serve",
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "DEBUG=* npx @11ty/eleventy"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^4.0.2",
"@11ty/eleventy-navigation": "^0.3.2",
"@fullhuman/postcss-purgecss": "^6.0.0",
"autoprefixer": "^10.4.2",
"chokidar-cli": "^3.0.0",
"eleventy-plugin-svg-sprite": "^2.4.2",
"esbuild": "^0.19.3",
"esbuild-sass-plugin": "^2.15.0",
"html-minifier": "^4.0.0",
"js-yaml": "^4.1.0",
"luxon": "^3.1.1",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.6",
"markdown-it-attrs": "^4.1.6",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-cli": "^9.1.0",
"rimraf": "^3.0.2",
"sass": "^1.69.4",
"uglify-js": "^3.17.4"
},
"dependencies": {
"@uswds/uswds": "^3.8.0",
"axios": "^1.7.4",
"eleventy-plugin-toc": "^1.1.5",
"jsdom": "^23.2.0"
}
}