-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.79 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
{
"name": "11ty-uswds-template",
"version": "0.0.2",
"description": "A 11ty UWDS template.",
"main": "index.js",
"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 'js/**' 'styles/**' -c 'npm run assets:refresh' --polling",
"clean": "rimraf _site",
"dev": "npm run clean && npm run assets:build && 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",
"dev:cms": "npx decap-server",
"pages": "ELEVENTY_ENV=production npm run build",
"serve": "npx @11ty/eleventy --serve",
"start": "npx @11ty/eleventy --serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "CC0-1.0",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^4.0.2",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"autoprefixer": "^10.4.20",
"chokidar-cli": "^3.0.0",
"eleventy-plugin-svg-sprite": "^2.4.2",
"esbuild": "^0.23.1",
"esbuild-sass-plugin": "^3.3.1",
"js-yaml": "^4.1.0",
"luxon": "^3.5.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"rimraf": "^6.0.1"
},
"dependencies": {
"@uswds/uswds": "^3.8.2",
"decap-cms": "^3.3.3"
}
}