-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.78 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
55
56
57
58
59
60
61
62
63
{
"name": "api-solid",
"version": "1.0.0",
"description": "GymPass style app.",
"main": "index.js",
"types": "module",
"scripts": {
"start": "node build/server.js",
"start:dev": "tsx watch src/server.ts",
"build": "node esbuild.config.js",
"lint": "eslint src --ext .ts",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "NODE_ENV=test vitest run -c vitest.config.e2e.ts",
"test:coverage": "vitest run --coverage",
"test:cov:e2e": "NODE_ENV=test vitest run --coverage -c vitest.config.e2e.ts",
"test:cov:all": "npm run test:coverage && npm run test:cov:e2e",
"test:ui": "vitest --ui"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@faker-js/faker": "9.6.0",
"@rocketseat/eslint-config": "2.2.2",
"@swc/cli": "0.6.0",
"@swc/core": "1.11.16",
"@types/bcryptjs": "2.4.6",
"@types/jsonwebtoken": "9.0.9",
"@types/node": "22.13.13",
"@types/passport-jwt": "4.0.1",
"@types/supertest": "6.0.3",
"@vitest/coverage-v8": "3.0.9",
"dayjs": "1.11.13",
"eslint": "8.57.1",
"jsonwebtoken": "9.0.2",
"passport-jwt": "4.0.1",
"prisma": "6.5.0",
"supertest": "7.1.0",
"tsx": "4.19.3",
"typescript": "5.8.2",
"unplugin-swc": "1.5.1",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.0.9"
},
"dependencies": {
"@anatine/zod-openapi": "2.2.7",
"@fastify/cookie": "11.0.2",
"@fastify/jwt": "9.1.0",
"@fastify/swagger": "9.4.2",
"@fastify/swagger-ui": "5.2.2",
"@prisma/client": "6.5.0",
"@vitest/ui": "3.0.9",
"bcryptjs": "3.0.2",
"dotenv": "16.4.7",
"fastify": "5.2.2",
"fastify-type-provider-zod": "4.0.2",
"reflect-metadata": "0.2.2",
"tsyringe": "4.8.0",
"zod": "3.24.2"
}
}