-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
107 lines (107 loc) · 3.62 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
99
100
101
102
103
104
105
106
107
{
"name": "react-redux-antd",
"version": "0.1.0",
"description": "React & Redux & Ant.Design",
"main": "index.js",
"scripts": {
"start": "pm2 startOrReload ./config/test.json --env production",
"clean": "rm -rf dist",
"compile": "webpack --progress --colors --display-chunks --display-error-details",
"dev": "npm run watch:client & npm run watch:server",
"watch:client": "webpack --progress --colors --watch --display-chunks --display-error-details",
"watch:server": "nodemon --watch server ./server/index.js",
"start:test": "pm2 startOrReload ./config/test.json --env test",
"start:prod": "pm2 startOrReload ./config/production.json --env production",
"setup:test": "pm2 deploy ./config/config.json test setup",
"setup:prod": "pm2 deploy ./config/config.json production setup",
"deploy": "npm run deploy:test && npm run deploy:prod",
"deploy:test": "pm2 deploy ./config/config.json test update",
"deploy:prod": "pm2 deploy ./config/config.json production update",
"revert": "pm2 deploy ./config/config.json test revert",
"list": "pm2 deploy ./config/config.json test list"
},
"author": "Koala Huang <[email protected]>",
"license": "MIT",
"dependencies": {
"antd": "^0.11.3",
"babel": "^6.3.26",
"co-request": "^1.0.0",
"compression": "^1.6.1",
"debug": "^2.2.0",
"errorhandler": "^1.4.3",
"express": "^4.13.3",
"express-session": "^1.13.0",
"history": "^2.0.0-rc2",
"http-proxy": "^1.12.0",
"humps": "^1.0.0",
"iconv-lite": "^0.4.13",
"immutable": "^3.7.6",
"key-mirror": "^1.0.1",
"lodash": "^4.0.0",
"lusca": "^1.3.0",
"moment": "^2.11.1",
"normalizr": "^2.0.0",
"open": "0.0.5",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-redux": "^4.0.6",
"react-router": "^2.0.0-rc5",
"react-star-rating": "^1.4.2",
"redux": "^3.0.5",
"redux-logger": "^2.3.2",
"redux-simple-router": "^2.0.4",
"redux-thunk": "^1.0.3",
"request": "^2.67.0",
"serve-favicon": "^2.3.0",
"swig": "^1.4.2",
"thunkify": "^2.1.2",
"vue-resource": "^0.6.1",
"yargs": "^3.32.0"
},
"devDependencies": {
"autoprefixer": "^6.3.1",
"autoprefixer-loader": "^3.2.0",
"babel": "^6.3.26",
"babel-core": "^6.4.5",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-antd": "^0.2.0",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"babel-runtime": "^6.3.19",
"browser-sync": "^2.11.1",
"browser-sync-webpack-plugin": "^1.0.1",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "3.1.0",
"eslint-loader": "^1.2.0",
"eslint-plugin-html": "^1.2.0",
"eslint-plugin-react": "^3.15.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"gulp": "^3.9.0",
"gulp-shell": "^0.5.1",
"html-webpack-plugin": "^1.7.0",
"image-webpack-loader": "^1.6.3",
"imagemin": "^4.0.0",
"jpegtran-bin": "^3.0.6",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"nodemon": "^1.8.1",
"optipng-bin": "^3.0.4",
"react-addons-test-utils": "^0.14.6",
"react-transform-catch-errors": "^1.0.1",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.2.0",
"style-loader": "^0.13.0",
"supertest": "^1.1.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.11"
}
}