-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 KB
/
package.json
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
{
"name": "find-a-friend-api",
"version": "1.0.0",
"main": "build/server.js",
"type": "module",
"scripts": {
"start": "node build/server.cjs",
"build": "tsup src --out-dir build",
"start:dev": "tsx watch src/server.ts",
"studio": "prisma studio",
"test": "vitest run --dir src/use-cases",
"test:watch": "vitest --dir src/use-cases"
},
"keywords": [],
"author": "Matheus Arakaki",
"license": "ISC",
"description": "challenge 03 from the nodejs course from rocketseat",
"dependencies": {
"@fastify/cookie": "11.0.1",
"@fastify/jwt": "9.0.1",
"@prisma/client": "5.22.0",
"bcryptjs": "2.4.3",
"dotenv": "16.4.5",
"fastify": "5.1.0",
"zod": "3.23.8"
},
"devDependencies": {
"@rocketseat/eslint-config": "2.2.2",
"@types/bcryptjs": "2.4.6",
"@types/node": "22.9.0",
"@types/supertest": "6.0.2",
"eslint": "8.57.1",
"prisma": "5.22.0",
"supertest": "7.0.0",
"tsup": "8.3.5",
"tsx": "4.19.2",
"typescript": "5.6.3",
"vite-tsconfig-paths": "5.1.2",
"vitest": "2.1.5"
}
}