-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.35 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
{
"license": "SEE LICENSE IN TERMS.md",
"scripts": {
"build": "yarn compile-prod",
"clean": "rm -rf ./docs/static",
"compile-dev": "webpack --mode=development",
"compile-prod": "webpack --mode=production",
"process-reports": "node scripts/process-reports.js",
"lighthouse": "lhci collect && lhci collect --additive --mobile && lhci upload",
"lint": "eslint --max-warnings=0 lighthouserc.js scripts src webpack.config.js",
"serve": "concurrently \"yarn serve-html\" \"yarn compile-dev --watch\"",
"serve-html": "http-server docs --cors",
"test": "ava test/*.js --verbose"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@lhci/cli": "^0.9.0",
"ava": "^4.3.3",
"babel-loader": "^8.2.5",
"concurrently": "^7.4.0",
"css-loader": "^6.7.1",
"eslint": "^8.24.0",
"http-server": "^14.1.1",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"mini-css-extract-plugin": "^2.6.1",
"nunjucks": "3.2.3",
"nunjucks-date-filter": "^0.1.1",
"nunjucks-webpack-plugin": "^5.0.0",
"sass": "^1.77.8",
"sass-loader": "^16.0.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"winston": "^3.8.2"
},
"dependencies": {
"@cfpb/cfpb-design-system": "^3.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.7.0"
}
}