-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.5 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
60
61
62
63
{
"name": "electrode-apollo-redux-engine",
"version": "1.0.4",
"description": "Integrating Electrode with Apollo and Redux",
"main": "index.js",
"scripts": {
"test": "clap test",
"lint": "clap lint",
"coverage": "clap check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khayong/electrode-apollo-redux-engine.git"
},
"keywords": [
"Electrode",
"Apollo",
"Redux"
],
"author": "Tan Khay Ong <[email protected]> (https://github.com/khayong)",
"license": "MIT",
"bugs": {
"url": "https://github.com/khayong/electrode-apollo-redux-engine/issues"
},
"homepage": "https://github.com/khayong/electrode-apollo-redux-engine#readme",
"devDependencies": {
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"babel-register": "^6.5.2",
"electrode-archetype-njs-module-dev": "^2.2.0",
"electrode-redux-router-engine": "^1.4.5",
"react": "^15.6.1",
"react-apollo": "^1.4.3",
"redux": "^3.7.2"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"optional-require": "^1.0.0",
"react-redux": "^5.0.5",
"react-router": "^3.0.5"
},
"peerDependencies": {
"react": "^15.6.1",
"react-apollo": "^1.4.3",
"react-dom": "^15.6.1"
},
"nyc": {
"all": true,
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"coverage",
"*clap.js",
"gulpfile.js",
"dist",
"test"
]
}
}