-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "prisma-reproductions",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prisma:latest": "npm i prisma@latest @prisma/client@latest",
"prisma:version": "npm i prisma@$PRISMA_VERSION @prisma/client@$PRISMA_VERSION",
"prisma:dev": "npm i prisma@dev @prisma/client@dev",
"ts:latest": "npm i ts-node@latest typescript@latest",
"archive": "rm -rf migrations_archive && mv ./migrations ./migrations_archive",
"test": "ts-node index.ts",
"start-dbs": "docker-compose up -d",
"stop-dbs": "docker-componse down",
"migrate": "npx prisma migrate dev",
"push": "npx prisma db push",
"pull": "npx prisma db pull",
"reset": "npx prisma migrate reset --force"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "^20.12.12",
"prisma": "^5.15.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@prisma/client": "^5.15.0",
"bcrypt": "^5.1.1",
"dotenv": "^16.0.3"
}
}