-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 931 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
{
"name": "booksmart-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch --env-file .env src/http/server.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"migrate:dev": "npx prisma migrate dev",
"prisma:studio": "npx prisma studio"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.504.0",
"@aws-sdk/s3-request-presigner": "^3.504.0",
"@fastify/jwt": "^8.0.0",
"@prisma/client": "^5.9.0",
"bcrypt": "^5.1.1",
"fastify": "^4.26.0",
"fastify-zod": "^1.4.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "^20.11.15",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"prisma": "^5.9.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}