-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
{
"private": true,
"dependencies": {
"antd": "^3.3.3",
"axios": "^0.18.0",
"babel-loader": "^7.1.4",
"babel-plugin-import": "^1.6.7",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cathay-fetch": "^2.2.8",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"ejs-loader": "^0.3.1",
"express": "^4.16.3",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.1.0",
"moment": "^2.19.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router": "^4.2.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"transform-runtime": "^0.0.0",
"webpack": "4.0.0",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1"
},
"devDependencies": {
"atool-build": "^0.9.0",
"atool-test-mocha": "^0.1.4",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-runtime": "^6.9.2",
"component": "^1.1.0",
"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",
"file-loader": "^1.1.11",
"image-webpack-loader": "^4.2.0",
"node-sass": "^4.8.3",
"pre-commit": "1.x",
"react-hot-loader": "^4.0.0",
"redbox-react": "^1.2.6",
"uglifyjs-webpack-plugin": "^1.2.4"
},
"pre-commit": [
"lint"
],
"scripts": {
"build": "atool-build",
"build_dev": "cross-env NODE_ENV=prd webpack --config webpack_2.config.js",
"lint": "eslint --ext .js,.jsx src/",
"start": "dora --plugins webpack",
"test": "atool-test-mocha ./**/__tests__/*-test.js",
"dev": "cross-env NODE_ENV=dev webpack-dev-server --config webpack_2.config.js",
"server": "nodemon server/server.js"
}
}