-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.43 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
{
"name": "egg-apollo-server",
"version": "0.3.0",
"description": "The apollo-server-koa plugin in egg.",
"directories": {
"lib": "lib"
},
"eggPlugin": {
"name": "apollo-server"
},
"keywords": [
"egg",
"graphql",
"egg-plugin",
"eggPlugin",
"apollo-server",
"egg-apollo-server"
],
"scripts": {
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test --full-trace",
"lint": "eslint .",
"cov": "egg-bin cov",
"ci": "npm run lint && npm run cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supperchong/egg-apollo-server.git"
},
"author": "supperchong@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/supperchong/egg-apollo-server/issues"
},
"homepage": "https://github.com/supperchong/egg-apollo-server#readme",
"dependencies": {
"apollo-server-koa": "^2.4.8",
"graphql": "^14.2.1",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.4",
"koa-compose": "^4.1.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.12",
"apollo-link-http": "^1.5.15",
"apollo-link-ws": "^1.0.18",
"apollo-utilities": "^1.3.2",
"axios": "^0.19.0",
"egg": "^2.22.2",
"egg-bin": "^4.13.1",
"egg-mock": "^3.22.4",
"eslint": "^5.16.0",
"eslint-config-egg": "^7.4.1"
}
}