-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "redux-boot-web-app-example",
"version": "1.0.0",
"description": "An example to demonstrate how to create a web app with Redux Boot.",
"main": "build/index.js",
"scripts": {
"start": "npm run build && node build/index.js",
"build": "rm -f build/index.js* && webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/choko-org/redux-boot-web-app-example.git"
},
"keywords": ["redux-boot", "redux"],
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/choko-org/redux-boot-web-app-example/issues"
},
"homepage": "https://github.com/choko-org/redux-boot-web-app-example#readme",
"dependencies": {
"express": "^4.13.4",
"json-server": "^0.8.9",
"redux": "^3.3.1",
"redux-actions": "^0.9.1",
"redux-boot": "^0.1.1",
"redux-promise": "^0.5.3"
},
"devDependencies": {
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.4.3",
"babel-runtime": "^6.6.1",
"flux-standard-action": "^0.6.1",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"webpack": "^1.12.14"
}
}