-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.14 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
{
"name": "prisma-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prisma:lat": "npm i prisma@latest @prisma/client@latest",
"prisma:ver": "npm i prisma@$PRISMA_VERSION @prisma/client@$PRISMA_VERSION",
"prisma:dev": "npm i prisma@dev @prisma/client@dev",
"ts:lat": "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",
"migrate": "npx prisma migrate dev",
"push": "npx prisma db push",
"pull": "npx prisma db pull",
"reset": "npx prisma migrate reset --force"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@prisma/prisma-schema-wasm": "5.13.0-7.87bc6b811aafa9b7bcdb787a2b8c8b5728cbbfb0",
"@prisma/schema-files-loader": "5.13.0-dev.33",
"prisma": "^5.16.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"dependencies": {
"@prisma/client": "^5.16.2",
"dotenv": "^16.0.3"
}
}