-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "react-apollo-autosave",
"version": "0.0.9",
"description": "React component that allows for editing and autosave behaviour, combining an Apollo Query and Mutation.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egges/react-apollo-autosave.git"
},
"keywords": [
"react",
"apollo",
"autosave",
"editor",
"local",
"data"
],
"author": "Arjan Egges",
"license": "MIT",
"bugs": {
"url": "https://github.com/egges/react-apollo-autosave/issues"
},
"homepage": "https://github.com/egges/react-apollo-autosave#readme",
"devDependencies": {
"typescript": "^3.1.6"
},
"dependencies": {
"@types/graphql": "^14.0.3",
"@types/lodash": "^4.14.117",
"@types/react": "^16.4.18",
"apollo-client": "^2.4.5",
"graphql": "^14.0.2",
"lodash": "^4.17.11",
"react": "^16.6.0",
"react-apollo": "^2.2.4"
}
}