This repository has been archived by the owner on Dec 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.91 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
{
"name": "isomorphic-redux",
"version": "1.0.0",
"repository": "https://github.com/bananaoomarang/isomorphic-redux",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production NODE_PATH=./build/shared node ./build/server",
"dev": "cross-env NODE_PATH=./src/shared node ./src/server",
"build": "npm run build:server && npm run build:client",
"build:client": "webpack --progress --color -p --config ./webpack/webpack.prod.config.js",
"build:server": "rimraf ./build && babel src -d build --copy-files",
"lint": "eslint src"
},
"author": "Milo Mordaunt <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "~0.12.0",
"babel-polyfill": "^6.9.1",
"body-parser": "^1.15.1",
"cross-env": "^1.0.8",
"express": "^4.13.4",
"express-session": "^1.13.0",
"hoist-non-react-statics": "^1.0.6",
"lodash": "^4.13.1",
"marked": "~0.3.5",
"object-assign": "^4.1.0",
"react": "^15.1.0",
"react-addons-update": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.4",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.9.0",
"clean-webpack-plugin": "^0.1.9",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"rimraf": "^2.5.2",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
}
}