-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 933 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
34
35
36
{
"name": "nodejs-prisma-fastify-boilerplate",
"version": "1.0.0",
"main": "dist/main.js",
"repository": "https://github.com/satishbabariya/nodejs-prisma-fastify-boilerplate",
"author": "Satish Babariya <[email protected]>",
"license": "MIT",
"scripts": {
"postinstall": "prisma generate",
"db:push": "prisma db push --accept-data-loss",
"db:migrate": "prisma migrate dev",
"build": "tsc",
"start": "ts-node src/main.ts"
},
"prisma": {
"seed": "ts-node src/seed.ts"
},
"engines": {
"node": "16.x"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.23",
"prisma": "^3.12.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@prisma/client": "3.12.0",
"dotenv": "^16.0.0",
"fastify": "^3.28.0",
"fastify-cors": "^6.0.3",
"fastify-error": "^1.1.0",
"jsonwebtoken": "^8.5.1"
}
}