This repository has been archived by the owner on May 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
73 lines (73 loc) · 2.73 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
65
66
67
68
69
70
71
72
73
{
"name": "coronavirus-faq",
"version": "1.3.0",
"scripts": {
"build": "run-p build:scripts build:styles && npm run build:site",
"build:scripts": "webpack --color --mode production",
"build:site": "bundle exec jekyll build",
"build:styles": "node-sass --include-path node_modules/uswds/dist/scss styles/index.scss dist/styles.css && postcss dist/styles.css --map -o dist/styles.css",
"clean": "run-p clean:*",
"clean:dist": "rimraf dist",
"clean:site": "bundle exec jekyll clean",
"federalist": "run-p build:scripts build:styles",
"suggestions": "npm run suggestions:search-gov && npm run suggestions:filter",
"suggestions:filter": "cd utils/search_result_counts && cat ../../suggestions-counts.json | pipenv run python filter_counts.py --min-count 2 >| ../../suggestions.json",
"suggestions:search-gov": "cd utils/search_result_counts && pipenv run python ./search_result_counts.py ../../suggestions-raw.json >| ../../suggestions-counts.json",
"start": "run-p start:*",
"start:scripts": "webpack --color --watch --mode development",
"start:site": "bundle exec jekyll serve --host 0.0.0.0",
"start:styles": "nodemon -w ./styles -e scss -x \"npm run build:styles\"",
"test": "npm run build && npm run test:htmlproofer && npm run test:jest",
"test:htmlproofer": "bundle exec rake htmlproof",
"test:htmlproofer:external": "bundle exec rake htmlproofexternal",
"test:jest": "jest"
},
"dependencies": {
"@babel/core": "^7.13.1",
"@babel/preset-env": "^7.13.5",
"@fullhuman/postcss-purgecss": "^4.0.2",
"accessible-autocomplete": "^2.0.3",
"autoprefixer": "^10.2.4",
"babel-loader": "^8.2.2",
"babel-plugin-template-html-minifier": "^4.1.0",
"core-js": "^3.9.0",
"fuse.js": "^6.4.6",
"lit-html": "^1.3.0",
"node-sass": "^5.0.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.6",
"postcss-cli": "^8.3.1",
"postcss-csso": "^5.0.0",
"serve": "^11.3.2",
"terser-webpack-plugin": "^4.2.3",
"uswds": "^2.10.1",
"webpack": "^4.44.2",
"webpack-cli": "^4.5.0",
"whatwg-fetch": "^3.6.1"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^10.0.2",
"a11y": "^0.5.1",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"fast-xml-parser": "^3.18.0",
"front-matter": "^4.0.2",
"jest": "^26.6.3",
"jest-expect-message": "^1.0.2",
"jest-puppeteer": "^4.4.0",
"puppeteer": "^2.1.1",
"true-case-path": "^2.2.1"
},
"browserslist": [
">0.1%",
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Samsung versions",
"Safari >= 9",
"ie 8-11",
"iOS >= 9"
]
}