-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.55 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
{
"name": "umi-plugin-apollo",
"version": "0.0.18",
"description": "Umi plugin for apollo graphql client",
"main": "lib/index.js",
"scripts": {
"pub": "npm run build && npm publish",
"test": "echo 'No tests yet.'",
"start": "npm run dev",
"dev": "babel src --watch --out-dir ./lib",
"build": "babel src --out-dir ./lib && node build-templates.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lemol/umi-plugin-apollo.git"
},
"keywords": [
"umi",
"umijs",
"apollo",
"graphql",
"react",
"plugin",
"umi-plugin"
],
"author": "Leza Lutonda <lemol-c@hotmail.com> (https://github.com/lemol)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lemol/umi-plugin-apollo/issues"
},
"homepage": "https://github.com/lemol/umi-plugin-apollo#readme",
"dependencies": {
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.12",
"apollo-link-error": "^1.1.11",
"apollo-link-http": "^1.5.15",
"apollo-link-schema": "^1.2.3",
"apollo-link-state": "^0.4.2",
"globby": "^10.0.1",
"graphql": "^14.4.2",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.5",
"lodash": "^4.17.15",
"react-apollo": "^3.0.0",
"react-apollo-hooks": "^0.5.0",
"umi-build-dev": "^1.10.18"
},
"devDependencies": {
"@babel/cli": "7.7.7",
"@babel/core": "7.7.7",
"@babel/preset-env": "7.7.7",
"babel-preset-latest-node": "4.0.1",
"fs-extra": "8.1.0"
},
"files": [
"lib",
"template",
"src"
]
}