-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"private": true,
"entry": {
"index": "./app/index.js"
},
"dependencies": {
"antd": "^2.1.0",
"axios": "^0.16.2",
"echarts": "^3.6.1",
"echarts-for-react": "^1.2.0",
"eslint-plugin-import": "^1.16.0",
"react": "^15.5.0",
"react-dom": "^15.5.0",
"react-router": "^3.0.2",
"react-slick": "^0.14.11",
"recharts": "^0.22.3",
"screenfull": "^3.2.0"
},
"devDependencies": {
"atool-build": "^0.9.0",
"atool-test-mocha": "^0.1.4",
"babel-eslint": "^7.0.0",
"babel-plugin-import": "^1.0.1",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-runtime": "^6.9.2",
"dora": "0.4.x",
"dora-plugin-webpack": "^0.8.1",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"expect": "^1.20.1",
"pre-commit": "1.x",
"redbox-react": "^1.2.6"
},
"pre-commit": [
"lint"
],
"scripts": {
"build": "atool-build",
"lint": "eslint --ext .js,.jsx src/",
"start": "dora --plugins webpack",
"test": "atool-test-mocha ./**/__tests__/*-test.js"
}
}