-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.65 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
{
"name": "nhtsa-dashboard",
"version": "4.9.0",
"description": "NHTSA Dashboard using Zoomdata JS Client",
"dependencies": {
"ag-grid": "^15.0.0",
"ag-grid-react": "^15.0.0",
"d3": "^3.5.17",
"echarts": "^4.2.1",
"gh-pages": "^2.0.1",
"husky": "^0.14.3",
"lint-staged": "^6.1.1",
"lodash.flowright": "^3.5.0",
"mobx": "^3.6.2",
"mobx-react": "^4.4.3",
"node-sass-chokidar": "^1.3.4",
"normalize.css": "^7.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-dom-factories": "^1.0.2",
"react-scripts": "3.0.0",
"velocity-react": "^1.4.1"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --write --single-quote --trailing-comma=all",
"git add"
]
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"precommit": "lint-staged",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zoomdata/nhtsa-dashboard.git"
},
"homepage": ".",
"license": "MIT",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}