-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
39
40
{
"name": "rest-api",
"version": "1.0.2",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run gen:client && tsc",
"start": "node dist/index.js",
"dev": "nodemon",
"gen:client": "prisma generate --schema=./src/models/model.prisma",
"postinstall": "npx prisma generate --schema=./src/models/model.prisma"
},
"keywords": [],
"author": "Muhammad Rayhan Hamada Budiman",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^7.0.0",
"@fastify/jwt": "^5.0.1",
"@fastify/swagger": "^6.0.1",
"@google-cloud/secret-manager": "^3.12.0",
"@prisma/client": "^3.14.0",
"@sinclair/typebox": "^0.23.5",
"axios": "^0.27.2",
"env-cmd": "^10.1.0",
"fastify": "^3.29.0",
"fastify-plugin": "^3.0.1",
"firebase-admin": "^10.2.0",
"google-auth-library": "^8.0.2",
"pino-pretty": "^7.6.1"
},
"devDependencies": {
"@swc/core": "^1.2.185",
"@types/node": "^17.0.33",
"cross-env": "^7.0.3",
"nodemon": "^2.0.16",
"prisma": "^3.14.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}