-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 789 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 789 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
{
"name": "prisma-showcase",
"version": "1.0.0",
"description": "prisma showcase",
"main": "index.js",
"scripts": {
"prisma-format": "npx prisma format",
"prisma-db-push": "npx prisma db push",
"prisma-migrate-dev": "npx prisma migrate dev",
"prisma-migrate-dev-create": "npx prisma migrate dev --create-only",
"prisma-migrate-reset": "npx prisma migrate reset",
"prisma-migrate-deploy": "npx prisma migrate deploy",
"prisma-db-seed": "npx prisma db seed",
"prisma-studio": "npx prisma studio"
},
"keywords": [
"prisma",
"typescript",
"migrations"
],
"author": "functn",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.8.1",
"prisma": "^4.4.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}