-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.68 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "koa-redux-toolkit",
"version": "1.0.0",
"description": "koa mysql react redux toolkit",
"main": "server.js",
"engines": {
"node": ">=4.5.0",
"npm": "^3.0.0"
},
"keywords": [
"koa",
"mysql",
"redux",
"react",
"ES6"
],
"babel": {
"presets": [
"es2015",
"react",
"stage-3"
],
"plugins": []
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react",
"stage-3"
]
}
]
]
},
"dependencies": {
"babel-cli": "^6.14.0",
"babel-preset-stage-3": "^6.11.0",
"co": "^4.6.0",
"connect-history-api-fallback": "^1.3.0",
"koa-connect-history-api-fallback": "=0.3.0",
"ip": "^1.1.3",
"koa": "^1.2.1",
"koa-body": "^1.5.0",
"koa-generic-session": "^1.11.3",
"koa-redis": "^2.1.2",
"koa-router": "^5.4.0",
"koa-static": "^2.0.0",
"mysql-co": "0.0.4"
},
"devDependencies": {
"antd": "^1.11.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"css-loader": "^0.25.0",
"eslint": "^4.18.2",
"eslint-config-standard": "^6.2.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-react": "^6.4.1",
"eslint-plugin-standard": "^2.0.1",
"json-loader": "^0.5.4",
"material-ui": "^0.16.1",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"react-router": "^2.7.0",
"react-router-loader": "^0.5.4",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-devtools": "^3.3.1",
"sass-loader": "^4.0.2",
"sassify": "^2.0.0",
"style-loader": "^0.13.1",
"watchify": "^3.7.0",
"webpack": "^1.13.2"
},
"scripts": {
"test": "node --harmony server.js",
"old-build": "./node_modules/.bin/browserify --debug -t sassify --extension=js -o client/bundle.js client/main.js",
"old-build-continue": "./node_modules/.bin/watchify --debug -t sassify --extension=js -o client/bundle.js client/main.js",
"build-continue": "webpack-dev-server --inline --hot --display-error-details --config ./webpack.config.js",
"build-debug": "webpack -d --display-error-details --config ./webpack.config.js",
"build": "webpack -p --display-error-details --config ./webpack.config.js",
"start": "./node_modules/.bin/babel-node --debug server.js",
"eslint": "./node_modules/.bin/eslint server client",
"eslint-fix": "npm run eslint -- --fix"
},
"author": "yangyuqi",
"license": "ISC"
}