-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1002 Bytes
/
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
{
"name": "steam_viz",
"version": "0.1.0",
"private": true,
"dependencies": {
"@vx/group": "^0.0.170",
"@vx/mock-data": "^0.0.179",
"@vx/scale": "^0.0.179",
"@vx/shape": "^0.0.181",
"antd": "^3.10.5",
"d3": "^5.7.0",
"papaparse": "^4.6.1",
"react": "^16.6.1",
"react-d3-cloud": "^0.7.0",
"react-dom": "^16.6.1",
"react-scripts": "2.1.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --print-width 80 --no-semi --single-quote --trailing-comma es5 --write src/**/*.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"husky": "^1.1.3",
"prettier": "1.15.2",
"pretty-quick": "^1.8.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}