-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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": "apollo-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon -r esm app.js",
"start": "node -r esm app.js",
"lint": "eslint --ext .js ./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^2.19.2",
"aws-sdk": "^2.841.0",
"bull": "^3.20.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-redis-subscriptions": "^2.3.1",
"ioredis": "^4.22.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.15",
"morgan": "^1.10.0",
"nyc": "^15.1.0",
"redis": "^3.0.2",
"subscriptions-transport-ws": "^0.9.18",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.3.0",
"mocha": "^8.1.3"
}
}