forked from 18F/analytics.usa.gov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.13 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
74
{
"name": "analytics.usa.gov",
"version": "2.0.0",
"description": "dashboard of analytics",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build-prod": "webpack",
"build-dev": "webpack --mode=development --watch",
"local:watch": "gulp watch",
"local:serve": "make dev",
"copy-assets": "gulp copyAssets",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:styles": "stylelint ./sass/*.scss",
"lint:styles:fix": "stylelint ./sass/*.scss --fix",
"lint:html": "prettier -c {**/*,*}.html",
"lint:html:fix": "prettier -w {**/*,*}.html",
"pa11y": "pa11y http://localhost:4000/data",
"prepare": "husky install",
"start": "npm-run-all --parallel local:watch local:serve",
"test": "mocha --require @babel/register spec",
"coverage": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/18F/analytics.usa.gov.git"
},
"author": "",
"license": "SEE LICENSE IN License.md",
"bugs": {
"url": "https://github.com/18F/analytics.usa.gov/issues"
},
"homepage": "https://github.com/18F/analytics.usa.gov#readme",
"devDependencies": {
"@18f/identity-stylelint-config": "^4.0.0",
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/register": "^7.23.7",
"@eslint/js": "^8.57.0",
"@uswds/compile": "^1.1.0",
"babel-loader": "^8.3.0",
"babel-polyfill": "^6.26.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^14.0.0",
"gulp": "^4.0.2",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"pa11y": "^7.0.0",
"prettier": "^3.2.5",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.0",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": "20.x.x"
},
"dependencies": {
"@uswds/uswds": "^3.8.0",
"d3": "^3.5.17",
"q": "^1.5.1"
}
}