-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 800 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 800 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
{
"name": "d05m-task-main-list",
"version": "1.0.0",
"description": "GraphQL demo - taskMainList implementation",
"main": "server.js",
"scripts": {
"start": "nodemon -r esm src/server.js",
"start-db": "docker-compose -f dev-db/docker-postgres.yml up"
},
"author": "Poul Ejnar Rovsing / Samer Buna",
"license": "ISC",
"dependencies": {
"@prisma/client": "^3.10.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.5.0",
"graphql-iso-date": "^3.6.1",
"graphql-scalars": "^1.15.0",
"graphql-tools": "^8.2.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"pg": "^8.5.1",
"prisma": "^3.10.0"
},
"devDependencies": {
"eslint": "^7.21.0"
}
}