-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.61 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
{
"name": "Test",
"version": "1.0.0",
"description": "react redux router",
"main": "server.js",
"scripts": {
"clean": "rimraf dist",
"start": "better-npm-run start",
"start:tool": "better-npm-run start:tool",
"deploy": "better-npm-run deploy"
},
"betterScripts": {
"deploy": {
"command": "npm run clean && webpack --config webpack.config.production.js --progress --colors",
"env": {
"NODE_ENV": "production"
}
},
"start": {
"command": "npm run clean && webpack && node server.js",
"env": {
"DEV_TOOL": false
}
},
"start:tool": {
"command": "npm run clean && webpack && node server.js",
"env": {
"DEV_TOOL": true
}
}
},
"author": "lxp",
"license": "ISC",
"dependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.8.0",
"babel-runtime": "^6.6.1",
"better-npm-run": "0.0.8",
"classnames": "^2.2.5",
"es6-promise": "^3.2.1",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"react": "^15.0.2",
"react-addons-css-transition-group": "^15.1.0",
"react-cookie": "^0.4.6",
"react-dom": "^15.0.2",
"react-modal": "^1.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"react-router-redux": "^4.0.4",
"react-router-scroll": "^0.2.0",
"react-slick": "^0.12.2",
"react-tap-event-plugin": "^1.0.0",
"react-treebeard": "^1.1.4",
"redux": "^3.5.2",
"redux-immutablejs": "0.0.8",
"redux-thunk": "^2.0.1"
},
"devDependencies": {
"amazeui-touch": "^1.0.0",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.16.1",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"node-sass": "^3.10.0",
"open-browser-webpack-plugin": "0.0.2",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.4",
"redux-devtools": "^3.2.0",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.11",
"rimraf": "^2.5.2",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
}
}