-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "food-order-backend",
"version": "0.0.1",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"serve": "nodemon index.js",
"start": "node index.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest test/app.test.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@envelop/apollo-server-errors": "^3.2.0",
"@graphql-tools/schema": "^8.3.7",
"@graphql-yoga/node": "^2.0.0",
"apollo-server-core": "^3.6.7",
"apollo-server-express": "^3.6.7",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"graphql": "^15.4.0",
"graphql-import": "^1.0.2",
"graphql-subscriptions": "^2.0.0",
"graphql-upload": "^13.0.0",
"graphql-ws": "^5.7.0",
"graphql-yoga": "^1.17.4",
"mariadb": "^3.0.0",
"nodemon": "^2.0.15",
"subscriptions-transport-ws": "^0.11.0",
"swagger": "^0.7.5",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"jest": "^27.5.1",
"supertest": "^6.2.2"
}
}