-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 914 Bytes
/
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": "test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node --watch -r ts-node/register index.ts",
"start": "node -r ts-node/register index.ts",
"prisma:all": "npm run prisma:format && npm run prisma:generate && npm run prisma:seed",
"prisma:format": "npx prisma format",
"prisma:generate": "npx prisma generate",
"prisma:seed": "npx prisma db push --force-reset && npx prisma db seed"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"prisma": "^5.10.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@prisma/client": "^5.10.2",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"express": "^4.18.3"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}