-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "express-graphql-api",
"version": "1.0.0",
"description": "A Express GraphQL API using Authentication middlware, Business layer Authorization, DataLoader and Subscriptions.",
"main": "index.js",
"type": "commonjs",
"scripts": {
"start": "node index.js",
"dev": "nodemon -r dotenv/config index.js dotenv_config_path=.env",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"GraphQL",
"DataLoader",
"Authentication",
"Authorization",
"Subscriptions",
"WebSockets"
],
"author": "Sander Hammelburg",
"license": "ISC",
"dependencies": {
"@graphql-tools/merge": "8.2.1",
"@graphql-tools/schema": "8.3.1",
"compression": "1.7.4",
"cors": "2.8.5",
"dataloader": "2.0.0",
"express": "4.17.1",
"express-graphql": "0.12.0",
"express-jwt": "6.1.0",
"graphql": "16.0.1",
"graphql-subscriptions": "2.0.0",
"graphql-tag": "2.12.5",
"graphql-ws": "5.5.5",
"ws": "8.2.3"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-stage-0": "6.24.1",
"dotenv": "10.0.0",
"nodemon": "2.0.14"
}
}