-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 866 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
{
"name": "measure-reader",
"version": "1.0.0",
"type": "commonjs",
"scripts": {
"dev": "tsx --env-file=arquivo.env src/main.ts",
"dev:watch": "tsx --watch --env-file=arquivo.env src/main.ts",
"seed": "tsx ./prisma/seed.ts",
"build": "tsc",
"start:prod": "node --env-file=arquivo.env ./dist/main.js",
"start:migrate:prod": "prisma migrate deploy && prisma generate && npm run start:prod"
},
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^22.5.0",
"prisma": "^5.19.0",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/static": "^7.0.4",
"@google/generative-ai": "^0.17.1",
"@prisma/client": "5.19.0",
"date-fns": "^3.6.0",
"fastify": "^4.28.1",
"zod": "^3.23.8"
}
}