-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
51 lines (51 loc) · 1.72 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
{
"name": "tts-handbook",
"version": "3.0.0",
"description": "The TTS Handbook",
"scripts": {
"build": "eleventy",
"clean": "rm -rf _site",
"debug": "DEBUG=* eleventy --serve --incremental",
"federalist": "npm run build",
"lint": "prettier -w .",
"serve": "npm run start",
"start": "eleventy --serve --incremental",
"test": "npm run test:prefixed-links && npm run test:internal-links && npm run test:html-validation && npm run test:spelling",
"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.\")",
"test:spelling": "cspell --config ./cSpell.json \"pages/**/*.md\" --no-progress"
},
"author": "",
"license": "CC0-1.0",
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^3.1.8",
"@uswds/uswds": "^3.10.0",
"autoprefixer": "^10.4.20",
"eleventy-plugin-svg-sprite": "^2.4.2",
"esbuild": "^0.19.12",
"esbuild-sass-plugin": "^2.16.1",
"glob": "^9.3.5",
"js-yaml": "^4.1.0",
"jsdom": "^21.1.2",
"markdown-it": "^13.0.2",
"markdown-it-anchor": "^8.6.7",
"postcss": "^8.4.49",
"markdown-it-attrs": "^4.2.0",
"postcss-cli": "^10.0.0"
},
"devDependencies": {
"cheerio": "^1.0.0",
"cspell": "^6.31.3",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.31.0",
"html-validate": "^7.16.0",
"prettier": "^2.8.8"
},
"prettier": {
"proseWrap": "always"
}
}