-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.8 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.8 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "redux-graph",
"version": "2.13.1",
"description": "Redux graph database.",
"homepage": "https://github.com/cape-io/redux-graph",
"author": "Kai Curry <kai@cape.io> (http://www.cape.io/)",
"main": "lib/index",
"repository": "cape-io/redux-graph",
"bugs": {
"url": "https://github.com/cape-io/redux-graph/issues"
},
"tags": [
"react",
"redux",
"graph",
"database"
],
"keywords": [
"react",
"redux",
"graph",
"database"
],
"license": "MIT",
"scripts": {
"build": "mkdir -p lib && babel ./src -d lib",
"lint": "eslint examples src test",
"test": "babel-tape-runner test/*spec.js",
"prepublish": "npm run build"
},
"dependencies": {
"cape-lodash": "^1.11.0",
"cape-redux": "^3.1.0",
"cape-select": "^2.4.0",
"lodash": "^4.17.4",
"redux": "^3.6.0",
"reselect": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.13.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.5",
"babel-plugin-lodash": "^3.2.10",
"babel-plugin-react-transform": "^2.0.2",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.16.0",
"babel-register": "^6.11.6",
"babel-tape-runner": "^2.0.1",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.0.0",
"faucet": "0.0.1",
"react": "^15.4.0",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.11",
"tape": "^4.5.1",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.6.0",
"webpack-hot-middleware": "^2.10.0"
}
}