-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
41
42
43
44
45
46
{
"name": "api_habit_helper",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node --watch --no-emit src/server.ts | npx pino-pretty",
"start": "node dist/server.js | npx pino-pretty",
"build": "tsc",
"prestart": "npm run build",
"vercel-build": "npx prisma generate && npx prisma migrate deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diegojfcampos/api_habit_helper.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/diegojfcampos/api_habit_helper/issues"
},
"homepage": "https://github.com/diegojfcampos/api_habit_helper#readme",
"dependencies": {
"@fastify/cors": "^8.2.1",
"@fastify/env": "^4.2.0",
"@fastify/jwt": "^6.7.1",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.8.0",
"@prisma/client": "^4.16.2",
"dayjs": "^1.11.7",
"fastify": "^4.15.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.2.13",
"@types/events": "^3.0.0",
"@types/node": "^18.16.16",
"tsx": "^3.12.6",
"typescript": "^5.1.6"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}