-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.39 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
48
{
"name": "tractian-webinar-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"lint": "eslint '**/*.{ts,tsx}'",
"start:dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"build": "npx prisma generate && tsup src k6 --out-dir dist --sourcemap inline",
"docker:build": "docker build -t tractian-webinar-api .",
"docker:dev": "docker-compose up",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "npx prisma studio",
"prisma:push": "prisma db push",
"db:populate": "tsx src/scripts/db-populate.ts"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.1.0",
"@fastify/jwt": "^10.0.0",
"@fastify/multipart": "^9.0.3",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.5.1",
"@fastify/swagger-ui": "^5.2.3",
"@prisma/client": "^6.16.2",
"@prisma/extension-accelerate": "^2.0.2",
"better-auth": "^1.3.16",
"dotenv": "^17.2.1",
"fastify": "^5.5.0",
"fastify-type-provider-zod": "^5.1.0",
"prisma": "^6.16.2",
"uuid": "^11.1.0",
"zod": "^4.0.17"
},
"devDependencies": {
"@rocketseat/eslint-config": "^2.2.2",
"@types/node": "^24.5.2",
"eslint": "^8.57.1",
"tsup": "^8.5.0",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"vite-tsconfig-paths": "^5.1.4"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}