-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.44 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
49
50
51
52
53
54
{
"name": "trainify-api",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"start": "node build/server.cjs",
"build": "tsup src --out-dir build",
"postinstall": "npx prisma generate",
"migrate:deploy": "npx prisma migrate deploy",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"seed": "node prisma/seeds/index.js",
"seed:reset": "node prisma/seeds/reset-and-seed.js",
"check": "ultracite check",
"fix": "ultracite fix"
},
"keywords": [],
"author": "João Otávio Schonarth",
"license": "MIT",
"description": "",
"devDependencies": {
"@biomejs/biome": "2.4.7",
"@types/bcrypt": "6.0.0",
"@types/node": "24.3.0",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"prisma": "7.5.0",
"tsx": "4.20.4",
"typescript": "5.9.2",
"ultracite": "7.3.1",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4"
},
"dependencies": {
"@fastify/cookie": "11.0.2",
"@fastify/cors": "11.2.0",
"@fastify/jwt": "10.0.0",
"@fastify/swagger": "9.7.0",
"@fastify/swagger-ui": "5.2.5",
"@prisma/adapter-pg": "7.5.0",
"@prisma/client": "7.5.0",
"bcrypt": "6.0.0",
"dayjs": "1.11.17",
"dotenv": "17.2.1",
"fastify": "5.8.4",
"fastify-type-provider-zod": "6.1.0",
"tsup": "8.5.0",
"zod": "4.3.6"
}
}