-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 851 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 851 Bytes
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
{
"name": "graphql-servers",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"scripts": {
"start": "npm run ex4",
"ex0": "nodemon 0.hello-world.js",
"ex1": "nodemon 1.express-graphql-http.js",
"ex2": "nodemon 2.apollo.js",
"ex3": "nodemon 3.apollo-mongo.js",
"ex4": "nodemon 4.confac/confac-server.js"
},
"author": "itenium",
"license": "MIT",
"dependencies": {
"@apollo/server": "^4.9.5",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"graphql": "^16.8.1",
"graphql-http": "^1.22.0",
"graphql-tag": "^2.12.6",
"graphql-tools": "^9.0.0",
"lodash": "^4.17.21",
"mongodb": "^3.5.8"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"nodemon": "^3.0.2"
}
}