Added npm packages needed for using Prisma. (#37)

This commit is contained in:
Matija Sosic 2020-09-11 15:06:38 +02:00 committed by GitHub
parent a70effa6db
commit 0bc5b2eec8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View File

@ -17,10 +17,12 @@
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"morgan": "~1.9.1"
"morgan": "~1.9.1",
"@prisma/client": "2.x"
},
"devDependencies": {
"nodemon": "^2.0.4",
"standard": "^14.3.4"
"standard": "^14.3.4",
"@prisma/cli": "2.x"
}
}

View File

@ -4,7 +4,7 @@ app todoApp {
entityPSL Project {=psl
id Int @id @default(autoincrement())
tasks Tasks[]
tasks Task[]
psl=}
entityPSL Task {=psl