-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.63 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.63 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "kenote-react-admin",
"version": "1.0.0",
"description": "React Admin Client...",
"main": "index.js",
"repository": "https://github.com/thondery/kenote-react-admin.git",
"author": "thondery <thondery@163.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-import": "^1.6.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"html-webpack-include-assets-plugin": "^1.0.1",
"html-webpack-plugin": "^2.30.1",
"json-loader": "^0.5.7",
"lodash-webpack-plugin": "^0.11.4",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.7",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"antd": "^2.13.6",
"classnames": "^2.2.5",
"font-awesome": "^4.7.0",
"http-services": "^1.2.5",
"localforage": "^1.5.2",
"prop-types": "^15.6.0",
"react": "15.6.2",
"react-dom": "15.6.2",
"react-hot-loader": "^3.0.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0"
},
"resolutions": {
"antd/moment": "2.18.1",
"rc-calendar/moment": "2.18.1",
"rc-time-picker/moment": "2.18.1"
},
"scripts": {
"clean": "rimraf ./dist",
"start": "npm run dev",
"start:all": "npm run dev:all",
"build": "npm run compile",
"build:all": "npm run compile:all",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js --devtool source-map",
"compile": "cross-env NODE_ENV=production webpack --config webpack.config.js --progress --hide-modules",
"compile:dll": "webpack --config webpack.dll.config.js --progress --hide-modules",
"dev:all": "npm run clean && npm run compile:dll && npm run dev",
"compile:all": "npm run clean && npm run compile:dll && npm run compile"
},
"engines": {
"node": ">=6.9.0",
"npm": ">=3.0.0"
},
"React": {
"desktop": false
}
}