-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
31 lines (31 loc) · 897 Bytes
/
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
{
"name": "universal-redux-starter",
"version": "0.0.1",
"description": "Minimal starter for using universal-redux npm package",
"repository": {
"type": "git",
"url": "git+https://github.com/bdefore/universal-redux-starter.git"
},
"scripts": {
"build": "universal-redux-build",
"start": "NODE_ENV=production NODE_PATH=./src universal-redux-server",
"dev-server": "NODE_PATH=./src universal-redux-server",
"dev": "concurrently --kill-others \"npm run watch-client\" \"npm run dev-server\"",
"watch-client": "universal-redux-watch"
},
"author": {
"name": "Buck DeFore"
},
"license": "MIT",
"dependencies": {
"universal-redux": "4.4.0"
},
"devDependencies": {
"concurrently": "2.2.0",
"react": "^15.2.0",
"react-dom": "^15.2.0",
"react-redux": "4.4.5",
"react-router": "2.5.2",
"react-router-redux": "3.0.0"
}
}