-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.58 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
{
"name": "react-arena-admin",
"version": "0.0.1",
"description": "A console App use react-arena created",
"main": "index.jsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"build:dev": "npm run clean && cross-env BUILD_ENV=dev webpack --colors --config webpack.config.prod.js --define process.env.BUILD_ENV='\"dev\"'",
"build:func": "npm run clean && cross-env BUILD_ENV=func webpack --colors --config webpack.config.prod.js --define process.env.BUILD_ENV='\"func\"'",
"build:prod": "npm run clean && cross-env BUILD_ENV=prod webpack --colors --config webpack.config.prod.js --define process.env.BUILD_ENV='\"prod\"'",
"start": "node devServer.js",
"start:dist": "node expressServer.js",
"lint": "eslint src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linmodev/react-arena-admin.git"
},
"keywords": [
"react",
"react-arena",
"react-saga",
"redux",
"react-router"
],
"author": "xu",
"license": "ISC",
"bugs": {
"url": "https://github.com/linmodev/react-arena-admin/issues"
},
"homepage": "https://github.com/linmodev/react-arena-admin#readme",
"dependencies": {
"antd": "^2.12.5",
"babel-plugin-import": "^1.3.1",
"less-loader": "^4.0.5",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"redux-arena": "^0.4.1",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.1",
"exports-loader": "^0.6.4",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"image-webpack-loader": "^3.3.0",
"imports-loader": "^0.7.1",
"less": "^2.7.2",
"loader-utils": "^1.1.0",
"postcss": "^6.0.9",
"postcss-loader": "^2.0.6",
"react-hot-loader": "^1.3.1",
"rimraf": "^2.6.1",
"script-ext-html-webpack-plugin": "^1.8.5",
"style-loader": "0.18.2",
"transfer-webpack-plugin": "^0.1.4",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1"
},
"config": {
"host": "localhost",
"port": 3000
},
"theme": "./barcsys-dashboard/theme/antTheme.js"
}