-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 KB
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
{
"name": "@tombatossals/react-redux-horizon-starter",
"version": "0.0.1",
"description": "React Redux Horizon Starter Kit",
"repository": {
"type": "git",
"url": "git://github.com/tombatossals/react-redux-horizon-starter.git"
},
"author": {
"name": "David Rubert",
"email": "david.rubert@gmail.com"
},
"private": false,
"devDependencies": {
"react-scripts": "0.2.0",
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.1.1",
"eslint-config-standard": "^5.3.5",
"eslint-config-standard-react": "^3.0.0",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-standard": "^2.0.0",
"standard": "^7.1.2"
},
"dependencies": {
"@horizon/server": "^1.1.3",
"@horizon/client": "^1.1.3",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-redux": "^4.4.5",
"react-router": "^2.6.0",
"redux": "^3.5.1",
"redux-actions": "^0.10.1",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"express": "^4.14.0",
"http-proxy-middleware": "^0.17.0"
},
"scripts": {
"dev": "NODE_ENV=development babel-node src/server.js | react-scripts start",
"prod": "react-scripts build && NODE_ENV=production babel-node src/server.js",
"standard": "standard"
}
}