-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 894 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": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "20"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsup src/server.ts",
"start": "node dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rocketseat/eslint-config": "^2.2.2",
"@types/dotenv": "^8.2.0",
"@types/node": "^20.13.0",
"eslint": "^9.4.0",
"prisma": "^5.16.2",
"tsup": "^8.2.1",
"tsx": "^4.11.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@clerk/fastify": "^1.0.19",
"@fastify/cors": "^9.0.1",
"@fastify/swagger": "^8.15.0",
"@fastify/swagger-ui": "^4.0.1",
"@prisma/client": "^5.16.2",
"dayjs": "^1.11.11",
"dotenv": "^16.4.5",
"fastify": "^4.27.0",
"fastify-type-provider-zod": "^2.0.0",
"zod": "^3.23.8"
}
}