-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
75 lines (75 loc) · 2.73 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
{
"name": "react-pookpal",
"version": "1.0.0",
"description": "react framework by lijie",
"main": "src/src/entry/main.jsx",
"scripts": {
"build:mac": "BABEL_ENV=production webpack --progress --profile --colors --config webpack.production.config.js",
"dev:mac": "npm run build:i18n-js:mac && BABEL_ENV=development webpack-dev-server --progress --colors --hot",
"build:i18n-messages:mac": "rimraf i18n-messages && BABEL_ENV=i18n babel --quiet src > /dev/null",
"build:i18n-js:mac": "npm run build:i18n-messages:mac && babel-node --presets es2015 scripts/translate.js",
"build:win": "SET BABEL_ENV=production && webpack --progress --profile --colors --config webpack.production.config.js",
"dev:win": "npm run build:i18n-js:win && SET BABEL_ENV=development && webpack-dev-server --progress --colors --hot",
"build:i18n-messages:win": "rimraf i18n-messages && SET BABEL_ENV=i18n&&babel --quiet src > c:nul",
"build:i18n-js:win": "npm run build:i18n-messages:win && babel-node --presets es2015 scripts/translate.js"
},
"keywords": [
"react"
],
"author": "pookpal",
"license": "ISC",
"dependencies": {
"antd": "^1.6.5",
"babel-runtime": "^6.9.2",
"console-polyfill": "^0.2.2",
"echarts": "^3.2.1",
"history": "^2.0.0-rc2",
"immutable": "^3.8.1",
"object-assign": "^4.1.0",
"react": "^15.2.0",
"react-addons-css-transition-group": "^15.3.0",
"react-dom": "^15.2.0",
"react-intl": "^2.1.3",
"react-progress-2": "^4.2.1",
"react-redux": "^4.4.5",
"react-router": "^2.5.2",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-actions": "^0.10.1",
"redux-logger": "^2.6.1",
"redux-router": "^2.0.0",
"redux-saga": "^0.11.0",
"redux-simple-router": "^2.0.4",
"redux-thunk": "^2.1.0",
"superagent": "^2.0.0",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"animate.css": "^3.5.1",
"autoprefixer-loader": "^3.2.0",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-antd": "^0.4.0",
"babel-plugin-react-intl": "^2.1.3",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.23.1",
"es5-shim": "^4.5.9",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"open-browser-webpack-plugin": "0.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}