-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 897 Bytes
/
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
{
"name": "react-apollo-mutation-state",
"version": "1.0.1",
"description": "A React HOC for Apollo GraphQL mutation, provides loading & error as props.",
"main": "./lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel ./src -d ./lib"
},
"repository": {
"type": "git",
"url": "https://github.com/lhz516/react-apollo-mutation-state.git"
},
"keywords": [
"apollo",
"graphql",
"react",
"mutate",
"mutation",
"loading",
"hoc"
],
"author": "Hanz Luo",
"license": "MIT",
"dependencies": {
"hoist-non-react-statics": "^2.x.x"
},
"peerDependencies": {
"react": ">=15.5.0",
"prop-types": ">=15.5.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1"
}
}