This repository has been archived by the owner on Nov 17, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 181
/
package.json
87 lines (87 loc) · 2.57 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
{
"name": "isomorphic500",
"version": "2.0.0",
"description": "Example of an isomorphic React app using fluxible and webpack",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node index",
"dev": "NODE_ENV=development DEBUG=isomorphic500 nodemon index.js",
"dev-windows": "SET NODE_ENV=development&&SET DEBUG=isomorphic500&&nodemon index.js",
"prod": "NODE_ENV=production PORT=8080 DEBUG=isomorphic500 node index",
"prod-windows": "SET NODE_ENV=production&&SET PORT=8080&&SET DEBUG=isomorphic500&&node index",
"build": "webpack --stats --config ./webpack/prod.config.js",
"postinstall": "npm run build",
"lint": "eslint index.js src webpack config"
},
"repository": {
"type": "git",
"url": "https://github.com/gpbl/isomorphic-react-template.git"
},
"keywords": [
"fluxible",
"isomorphic",
"react",
"flux"
],
"author": "gpbl <io@gpbl.org> (https://github.com/gpbl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gpbl/isomorphic-react-template/issues"
},
"engines": {
"node": "0.12.x"
},
"homepage": "https://github.com/gpbl/isomorphic-react-template",
"dependencies": {
"autoprefixer-loader": "3.1.0",
"babel": "5.8.23",
"babel-core": "5.8.25",
"babel-eslint": "4.1.3",
"babel-loader": "5.3.2",
"body-parser": "1.14.1",
"compression": "1.5.2",
"cookie-parser": "1.4.0",
"css-loader": "0.19.0",
"csurf": "1.8.3",
"debug": "2.2.0",
"es6-promise": "3.0.2",
"eslint": "1.6.0",
"eslint-plugin-react": "3.5.1",
"expose-loader": "0.7.0",
"express": "4.13.3",
"extract-text-webpack-plugin": "0.8.2",
"favicon": "0.0.2",
"file-loader": "0.8.4",
"fluxible": "1.1.0",
"fluxible-addons-react": "0.2.8",
"fluxible-plugin-fetchr": "0.3.9",
"fluxible-router": "0.4.14",
"immutable": "3.7.5",
"intl": "1.0.0",
"intl-locales-supported": "1.0.0",
"intl-messageformat": "1.1.0",
"keymirror": "0.1.1",
"locale": "0.0.20",
"lodash": "4.11.2",
"morgan": "1.6.1",
"node-sass": "3.3.3",
"react": "15.0.2",
"react-dom": "15.0.2",
"react-intl": "2.1.2",
"sass-loader": "3.0.0",
"serialize-javascript": "1.1.2",
"serve-favicon": "2.3.0",
"serve-static": "1.10.0",
"strip-loader": "0.1.0",
"style-loader": "0.12.4",
"superagent": "1.4.0",
"webpack": "1.12.2",
"webpack-error-notification": "0.1.4",
"webpack-stats-plugin": "0.1.0"
},
"devDependencies": {
"nodemon": "1.7.1",
"react-hot-loader": "1.3.0",
"webpack-dev-server": "1.12.0"
}
}