-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 KB
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
47
{
"name": "operio-api",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch --env-file=.env src/app.ts",
"build": "tsc",
"start": "node --env-file=.env dist/app.js",
"worker": "tsx --env-file=.env src/workers/document-generation.worker.ts",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:seed": "tsx prisma/seed.ts",
"db:seed-geo": "tsx prisma/seed-geo.ts",
"db:studio": "prisma studio",
"lint": "eslint src/"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1004.0",
"@aws-sdk/s3-request-presigner": "^3.1004.0",
"@fastify/cors": "^10.0.0",
"@fastify/jwt": "^9.0.0",
"@fastify/multipart": "^9.0.0",
"@fastify/rate-limit": "^10.0.0",
"@fastify/sensible": "^6.0.0",
"@prisma/client": "^6.0.0",
"argon2": "^0.41.0",
"bullmq": "^5.0.0",
"docxtemplater": "^3.50.0",
"fastify": "^5.0.0",
"fastify-plugin": "^5.0.0",
"openai": "^6.27.0",
"pizzip": "^3.1.0",
"zod": "^3.24.0"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"devDependencies": {
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"pino-pretty": "^13.0.0",
"prisma": "^6.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}