forked from 18F/handbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.28 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
{
"name": "tts-handbook",
"version": "3.0.0",
"description": "The TTS Handbook",
"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 && npx @11ty/eleventy",
"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",
"dev:cms": "npx netlify-cms-proxy-server",
"federalist": "npm run build",
"lint": "prettier -w .",
"serve": "npx @11ty/eleventy --serve",
"start": "npx @11ty/eleventy --serve",
"test": "npm run test:prefixed-links && npm run test:internal-links && npm run test:html-validation",
"test:html-validation": "html-validate _site/**/*.html",
"test:internal-links": "node check-links.js",
"test:prefixed-links": "! (grep -Erl \"\\(/|href=['\\\"]/\" pages && echo \"ERROR: Internal links must use {% page \"page name\" %} to work correctly with Cloud.gov Pages previews. Fix the above pages.\")"
},
"author": "",
"license": "CC0-1.0",
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-img": "^2.0.1",
"autoprefixer": "^10.4.2",
"cheerio": "^1.0.0-rc.12",
"chokidar-cli": "^3.0.0",
"eleventy-plugin-svg-sprite": "^2.1.0",
"esbuild": "^0.15.18",
"esbuild-sass-plugin": "^2.4.4",
"html-validate": "^7.12.0",
"js-yaml": "^4.1.0",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.6",
"netlify-cms-proxy-server": "^1.3.23",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.20",
"postcss-cli": "^10.0.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"@uswds/uswds": "^3.2.0",
"jsdom": "^20.0.3",
"markdown-it-attrs": "^4.1.6",
"netlify-cms": "^2.10.192"
},
"prettier": {
"proseWrap": "always"
}
}