forked from joaovitorcamargo/hotel-reservation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 967 Bytes
/
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
{
"name": "hotel-reservation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:watch": "tsx watch src/server.ts",
"dev": "vitest run && tsx src/server.ts",
"test": "vitest run",
"lint": "eslint 'src/**/*.ts'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "8.2.0",
"@types/bcryptjs": "2.4.4",
"@types/node": "20.8.6",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"prettier": "3.0.3",
"prisma": "5.4.2",
"tsx": "3.13.0",
"typescript": "5.2.2",
"vite-tsconfig-paths": "4.2.1",
"vitest": "0.34.6"
},
"dependencies": {
"@prisma/client": "5.4.2",
"bcryptjs": "2.4.3",
"dayjs": "1.11.10",
"dotenv": "16.3.1",
"fastify": "4.24.2",
"zod": "3.22.4"
}
}