-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 769 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 769 Bytes
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
{
"name": "react-horizon",
"version": "0.0.1",
"private": true,
"dependencies": {
"@horizon/client": "^1.1.3",
"@horizon/server": "^1.1.3",
"express": "^4.14.0",
"horizon-react": "^0.3.0",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"react-scripts": "0.2.1",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.11",
"rollup": "^0.34.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"build-server": "rollup --config=config/rollup.config.server.js",
"start-server": "node ./build/server.js"
}
}