-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.55 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": "universal-redux-simple-example",
"version": "0.0.1",
"description": "Simple minimal example for the universal-redux npm module setup",
"main": "index.js",
"scripts": {
"build": "better-npm-run build",
"dev-server": "better-npm-run dev-server",
"dev": "concurrent --kill-others \"npm run watch-client\" \"npm run dev-server\"",
"test": "echo \"Error: no test specified\" && exit 1",
"watch-client": "better-npm-run watch-client"
},
"betterScripts": {
"dev-server": {
"command": "universal-redux-server"
},
"build": {
"command": "universal-redux-build",
"env": {
"NODE_PATH": "./src",
"NODE_ENV": "production"
}
},
"watch-client": {
"command": "universal-redux-watch",
"env": {
"NODE_PATH": "./src",
"UV_THREADPOOL_SIZE": 100
}
}
},
"author": {
"name": "Bartol Karuza"
},
"license": "MIT",
"dependencies": {
"universal-redux": "^2.0.0-beta4",
"redux-simple-router": "1.0.1"
},
"devDependencies": {
"babel-core": "~6.0.0",
"better-npm-run": "0.0.5",
"concurrently": "1.0.0",
"deep-equal": "^1.0.1",
"eslint": "1.8.0",
"eslint-config-airbnb": "0.1.0",
"eslint-plugin-import": "^0.8.0",
"eslint-plugin-react": "^3.5.0",
"invariant": "^2.2.0",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-redux": "4.0.0",
"react-tools": "^0.10.0",
"react-transform-catch-errors": "^1.0.0",
"redbox-react": "^1.1.1",
"url-loader": "^0.5.7",
"warning": "^2.1.0"
}
}