-
Notifications
You must be signed in to change notification settings - Fork 195
/
package.json
86 lines (86 loc) · 2.64 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "analytics.usa.gov",
"version": "2.0.0",
"description": "dashboard of analytics",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build:prod": "gulp buildAssets && webpack",
"build:local": "gulp buildAssets && webpack --mode=development --watch",
"watch:local": "gulp watch",
"serve:local": "make local",
"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",
"start": "SCRIPT_DEBUG=true npm-run-all --parallel build:local watch:local serve:local",
"test": "jest",
"install-git-hooks": "cp ./hooks/* .git/hooks/ && chmod -R a+x .git/hooks/"
},
"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/preset-react": "^7.24.1",
"@babel/register": "^7.23.7",
"@eslint/js": "^8.57.0",
"@faker-js/faker": "^8.4.1",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@uswds/compile": "^1.1.0",
"babel-jest": "^29.7.0",
"babel-loader": "^8.3.0",
"babel-polyfill": "^6.26.0",
"braces": "3.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.7.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"fishery": "^2.2.2",
"globals": "^14.0.0",
"gulp": "^4.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"pa11y": "^8.0.0",
"prettier": "^3.2.5",
"react-test-renderer": "^18.3.1",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-two-dash-bem": "^1.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",
"date-fns": "^3.6.0",
"export-to-csv": "^1.3.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-tabs": "^6.0.2"
}
}