-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "redux-bees",
"version": "0.1.11",
"description": "A nice, declarative way of managing JSON API calls with Redux",
"main": "lib/index.js",
"scripts": {
"prepublish": "rimraf lib && mkdir lib && npm run lib",
"start": "webpack-dev-server --open",
"start-server": "babel-node example/server-side.js",
"lib": "babel src --out-dir lib",
"test": "babel-node test/index.js | tap-dot"
},
"files": [
"lib"
],
"contributors": [
"Stefano Verna <[email protected]>"
],
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-module-alias": "^1.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"node-fetch": "^1.7.2",
"prop-types": "^15.5.10",
"react-dom": "^15.5.4",
"react-router": "^4.1.2",
"react-router-config": "^1.0.0-beta.3",
"redux": "^3.6.0",
"rimraf": "^2.6.1",
"tap-dot": "^1.0.5",
"tape": "^4.7.0",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"hoist-non-react-statics": "^2.2.2",
"object-path-immutable": "^0.5.1",
"object.omit": "^2.0.1",
"query-string": "^4.3.4",
"react": "*",
"react-redux": "*"
}
}