-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 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": "gogym-api",
"type": "module",
"version": "1.0.0",
"description": "Application for registration and check-in at gyms",
"main": "index.js",
"scripts": {
"start:dev": "tsx watch src/server.ts",
"start": "node build/server.js",
"build": "tsup src --out-dir build",
"test": "vitest run --project unit",
"test:e2e": "vitest run --project e2e",
"test:watch": "vitest --project unit",
"test:e2e:watch": "vitest --project e2e",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevAnseSenior/gogym-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DevAnseSenior/gogym-api/issues"
},
"homepage": "https://github.com/DevAnseSenior/gogym-api#readme",
"devDependencies": {
"@rocketseat/eslint-config": "2.2.2",
"@types/bcryptjs": "2.4.6",
"@types/node": "24.3.0",
"@types/supertest": "6.0.3",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"prisma": "6.14.0",
"supertest": "7.1.4",
"tsup": "8.5.0",
"tsx": "4.20.4",
"typescript": "5.9.2",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4"
},
"dependencies": {
"@fastify/cookie": "11.0.2",
"@fastify/jwt": "10.0.0",
"@prisma/client": "6.14.0",
"bcryptjs": "3.0.2",
"dayjs": "1.11.13",
"dotenv": "17.2.1",
"fastify": "5.5.0",
"zod": "4.0.17"
}
}