-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.22 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.22 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
{
"name": "api-solid-nodejs",
"version": "1.0.0",
"description": "Projeto para gestão de check-ins em academias, explorando conceitos como SOLID, Design Patterns, JWT, Refresh Token, RBAC, e uso de Docker para configuração do banco de dados.",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"start": "node build/server.js",
"build": "tsup src --out-dir build",
"services:up": "docker compose -f infra/compose.yaml up -d",
"services:stop": "docker compose -f infra/compose.yaml stop",
"services:down": "docker compose -f infra/compose.yaml down",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage"
},
"author": "Leonardo Anders",
"license": "ISC",
"devDependencies": {
"@rocketseat/eslint-config": "2.2.2",
"@types/bcryptjs": "2.4.6",
"@types/node": "22.10.2",
"@vitest/coverage-v8": "3.0.4",
"eslint": "8.57.1",
"prisma": "6.1.0",
"tsup": "8.3.5",
"tsx": "4.19.2",
"typescript": "5.7.2",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.0.4"
},
"dependencies": {
"@prisma/client": "6.1.0",
"bcryptjs": "2.4.3",
"dotenv": "16.4.7",
"fastify": "5.2.0",
"zod": "3.24.1"
}
}