-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.25 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.25 KB
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
{
"private": true,
"entry": {
"index": "./src/index.js"
},
"dependencies": {
"add-asset-html-webpack-plugin": "^2.1.2",
"clean-webpack-plugin": "^0.1.17",
"cross-env": "^5.0.5",
"draft-js": "^0.10.0",
"dva": "^1.2.1",
"file-loader": "^0.10.0",
"font-awesome": "^4.7.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"github-markdown-css": "^2.4.1",
"global": "^4.3.2",
"highlight": "^0.2.4",
"highlight.js": "^9.9.0",
"html-webpack-plugin": "^2.30.1",
"js-cookie": "^2.1.3",
"marked": "^0.3.6",
"material-ui": "^0.16.6",
"moment": "^2.17.1",
"rc-pagination": "^1.7.1",
"rc-upload": "^2.3.3",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-dropzone": "^3.11.0",
"react-s-alert": "^1.2.2",
"react-stack-grid": "^0.1.1",
"react-tap-event-plugin": "^2.0.1",
"redux-logger": "^2.7.4",
"url-loader": "^0.5.7",
"webpack": "^3.7.1",
"webpack-merge": "^4.1.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"atool-test-mocha": "^0.1.5",
"babel-loader": "^6.2.10",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-dva-hmr": "^0.2.0",
"babel-plugin-material-ui": "^0.3.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babel-runtime": "^6.9.2",
"css-loader": "^0.26.1",
"expect": "^1.20.2",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.10.1",
"jsx-loader": "^0.13.2",
"open-browser-webpack-plugin": "0.0.3",
"qs": "^6.3.0",
"react-hot-loader": "^3.0.0-beta.6",
"redbox-react": "^1.3.2",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack-dev-server": "^2.2.0"
},
"scripts": {
"dll": "webpack --config webpack.dll.config.js -p",
"dev": "cross-env NODE_ENV=development webpack-dev-server --progress --profile --colors",
"pro:test": "cross-env NODE_ENV=production webpack-dev-server --progress --profile --colors",
"start": "npm run dll && npm run build",
"build": "cross-env NODE_ENV=production webpack -p",
"test": "atool-test-mocha ./src/**/*-test.js"
}
}