This repository has been archived by the owner on Nov 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 2.19 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "apollo-server-express-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha --timeout=3000 --require=ts-node/register",
"clean:uploads": "rm -rf ./uploads/** & rm src/fileupload/lowdb.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrdulin/apollo-server-express-starter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mrdulin/apollo-server-express-starter/issues"
},
"homepage": "https://github.com/mrdulin/apollo-server-express-starter#readme",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/express-graphql": "^0.6.1",
"@types/graphql": "^0.13.4",
"@types/ioredis": "^3.2.15",
"@types/lodash": "^4.14.116",
"@types/lowdb": "^1.0.5",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.5",
"@types/mongoose": "^5.2.11",
"@types/morgan": "^1.7.35",
"@types/node-fetch": "^2.1.2",
"@types/request": "^2.47.1",
"@types/request-promise": "^4.1.42",
"@types/shortid": "0.0.29",
"@types/sinon": "^5.0.1",
"chai": "^4.1.2",
"mocha": "^5.1.0",
"sinon": "^6.1.5",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
},
"dependencies": {
"@axelspringer/graphql-google-pubsub": "^1.0.9",
"apollo-link": "^1.2.2",
"apollo-link-http": "^1.5.4",
"apollo-server-express": "^1.3.4",
"apollo-upload-server": "^6.0.0-alpha.1",
"body-parser": "^1.18.2",
"casual": "^1.5.19",
"cors": "^2.8.4",
"dataloader": "^1.4.0",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-redis-subscriptions": "^1.5.0",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^2.24.0",
"graphql-type-json": "^0.2.1",
"ioredis": "^4.0.0",
"lowdb": "^1.0.0",
"merge-graphql-schemas": "^1.5.3",
"mkdirp": "^0.5.1",
"mongoose": "^5.2.5",
"morgan": "^1.9.1",
"node-fetch": "^2.2.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"shortid": "^2.2.12",
"subscriptions-transport-ws": "^0.9.8",
"winston": "^3.0.0"
}
}