-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 1.97 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
{
"name": "plot-thread",
"version": "0.1.0",
"dependencies": {
"@ant-design/colors": "^3.2.2",
"@ant-design/dark-theme": "^1.0.3",
"@types/classnames": "^2.2.7",
"@types/d3-fetch": "^1.1.5",
"@types/d3-selection": "^1.4.1",
"@types/d3-zoom": "^1.7.4",
"@types/jest": "24.0.13",
"@types/node": "12.0.2",
"@types/paper": "^0.11.12",
"@types/react": "16.8.17",
"@types/react-color": "^3.0.1",
"@types/react-dom": "16.8.4",
"@types/react-redux": "^7.0.9",
"@types/styled-components": "^4.1.18",
"all": "^0.0.0",
"antd": "^3.19.4",
"axios": "^0.19.2",
"babel-plugin-import": "^1.13.0",
"classnames": "^2.2.6",
"customize-cra": "^0.9.1",
"d3-fetch": "^1.1.2",
"d3-selection": "^1.4.0",
"d3-zoom": "^1.7.3",
"git": "^0.1.5",
"husky": "^2.3.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"lint-staged": "^8.1.7",
"muuri": "^0.8.0",
"node-sass": "^4.12.0",
"paper": "^0.12.0",
"prettier": "^1.17.1",
"react": "^16.8.6",
"react-app-rewired": "^2.1.5",
"react-color": "^2.17.3",
"react-dom": "^16.8.6",
"react-pie-menu": "^0.2.5",
"react-redux": "^7.0.3",
"react-scripts": "3.0.1",
"react-svg": "^10.0.11",
"styled-components": "^4.3.2",
"typesafe-actions": "^4.4.0",
"typescript": "3.4.5"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}