-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.34 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
108
109
110
111
112
113
114
{
"name": "NeufReact",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "concurrently --kill-others \"npm run watch-client\" \"npm run start-dev\"",
"prod": "concurrently --kill-others \"gulp\" \"npm run start-prod\"",
"watch-client": "better-npm-run watch-client",
"start-dev": "better-npm-run start-dev",
"start-prod": "better-npm-run start-prod"
},
"betterScripts": {
"start-prod": {
"command": "node ./bin/www",
"env": {
"NODE_PATH": "./assets/dist",
"NODE_ENV": "production",
"PORT": 9999
}
},
"start-dev": {
"command": "node-dev ./bin/www",
"env": {
"NODE_PATH": "./assets/src",
"NODE_ENV": "development",
"PORT": 9999
}
},
"watch-client": {
"command": "node ./webpack/webpack-dev-server.js"
}
},
"dependencies": {
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-typecheck": "^3.8.0",
"babel-polyfill": "^6.7.4",
"body-parser": "^1.13.3",
"classnames": "^2.2.3",
"clean-webpack-plugin": "^0.1.8",
"compression": "^1.6.1",
"cookie-parser": "^1.3.5",
"cookies-js": "^1.2.2",
"debug": "^2.2.0",
"ejs": "^2.3.4",
"express": "^4.13.4",
"glob": "^6.0.4",
"history": "^2.0.1",
"immutable": "^3.7.6",
"jquery": "^3.1.0",
"less": "^2.6.1",
"local-storage": "^1.4.2",
"lodash": "^4.0.1",
"moment": "^2.11.2",
"morgan": "^1.6.1",
"q": "^1.4.1",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"serve-favicon": "^2.3.0",
"superagent": "^1.7.2",
"url-parse": "^1.0.5",
"url-pattern": "^1.0.1",
"webpack": "^1.12.14",
"webpack-isomorphic-tools": "^2.2.41"
},
"devDependencies": {
"assets-webpack-plugin": "^3.3.0",
"autoprefixer": "^6.3.3",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-check-es2015-constants": "^6.7.2",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-syntax-decorators": "^6.5.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.5.2",
"babel-plugin-transform-es2015-block-scoping": "^6.7.1",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-plugin-typecheck": "^3.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.3.13",
"better-npm-run": "^0.0.8",
"concurrently": "^2.0.0",
"css-loader": "^0.23.1",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"force-case-sensitivity-webpack-plugin": "^0.1.1",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.1",
"gulp-load-plugins": "^1.2.0",
"gulp-util": "^3.0.7",
"html-webpack-plugin": "^2.9.0",
"http-proxy-middleware": "^0.9.1",
"isomorphic-style-loader": "^0.0.12",
"less-loader": "^2.2.2",
"mockjs": "1.0.1-beta1",
"postcss-loader": "^0.8.2",
"precss": "^1.4.0",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.3",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.9.1"
},
"peerDependencies": {
"less": "^2.6.1",
"webpack": "^1.12.14"
}
}