-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.94 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.94 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": "react_ultimate_framework",
"version": "1.0.0",
"description": "react ultimate framework for fast start",
"main": "index.js",
"repository": "git@github.com:wuyanwuyan/react_ultimate_framework.git",
"author": "claude <xxs1992@foxmail.com>",
"license": "MIT",
"scripts": {
"start": "node dev/index.js",
"clean": "rm -rf ./dist && rm -rf ./server_dist && rm -rf ./release",
"build": "npm run build_client_pro && npm run build_server_pro",
"build_client_dev": "webpack --config=./config/webpack_client_dev.config.js && webpack --config=./config/webpack_client_dev_mobile.config.js",
"build_server_dev": "webpack --display-error-details --config=./config/webpack_server_dev.config.js",
"build_client_pro": "webpack --config=./config/webpack_client_production.config.js && webpack --config=./config/webpack_client_production_mobile.config.js",
"build_server_pro": "webpack --config=./config/webpack_server_production.config.js",
"eslint-checkAll": "eslint ./client --ext js && eslint ./server --ext js",
"precommit": "lint-staged"
},
"lint-staged": {
"client/**/*.js": "eslint",
"server/**/*.js": "eslint"
},
"dependencies": {
"antd": "^3.1.6",
"classnames": "^2.2.5",
"handlebars": "^4.0.10",
"ignored-loader": "^0.0.1",
"isomorphic-fetch": "^2.2.1",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.4.0",
"koa-static": "^4.0.1",
"koa2-connect": "^1.0.2",
"moment": "^2.18.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-import": "^1.6.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"chalk": "^2.1.0",
"css-loader": "^0.28.5",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"ignore-loader": "^0.1.2",
"lint-staged": "^7.0.3",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.6",
"precss": "^3.1.0",
"redux-immutable-state-invariant": "^2.1.0",
"redux-logger": "^3.0.6",
"source-map-support": "^0.5.3",
"style-loader": "^0.20.1",
"url-loader": "^0.6.2",
"webpack": "^3.5.5",
"webpack-dev-middleware": "^2.0.4",
"webpack-hot-middleware": "^2.18.2",
"webpack-node-externals": "^1.6.0"
}
}