-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.44 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
{
"name": "eucleia",
"version": "0.1.0",
"description": "A glorious, comprehensive, boilerplate for universal React, Redux, Flow, etc. front-ends.",
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/makeshopio/eucleia.git"
},
"keywords": [
"react",
"isomorphic",
"universal",
"redux",
"flow"
],
"author": "Aaron Dancer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/makeshopio/eucleia/issues"
},
"homepage": "https://github.com/makeshopio/eucleia",
"scripts": {
"start": "node ./server.js",
"start-prod": "npm run build && NODE_ENV=production PORT=3000 node ./server.js",
"build": "NODE_ENV=production webpack --config ./webpack.production.config.js --progress"
},
"dependencies": {
"babel-core": "^6.13.2",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"compression": "^1.6.2",
"express": "^4.14.0",
"history": "^4.4.0",
"isomorphic-fetch": "^2.2.1",
"preact": "^6.4.0",
"preact-compat": "^3.9.2",
"react": "^15.3.0",
"react-bootstrap": "^0.30.6",
"react-dom": "^15.3.0",
"react-helmet": "^3.1.0",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-router-bootstrap": "^0.23.1",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"babel-loader": "^6.2.4",
"babel-plugin-module-resolver": "^2.3.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
"babel-plugin-transform-react-inline-elements": "^6.8.0",
"babel-plugin-transform-react-pure-class-to-function": "^1.0.1",
"babel-plugin-transform-react-remove-prop-types": "^0.2.10",
"babel-preset-es2015-loose": "^8.0.0",
"bootstrap-loader": "2.0.0-beta.14",
"bootstrap-sass": "^3.3.7",
"compression-webpack-plugin": "^0.3.2",
"css-loader": "^0.26.0",
"del": "^2.2.1",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"file-loader": "^0.9.0",
"node-sass": "^3.13.0",
"optimize-js-plugin": "^0.0.4",
"react-transform-hmr": "^1.0.4",
"resolve-url-loader": "^1.6.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "2.1.0-beta.25",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2"
}
}