-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 932 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
40
{
"name": "back-end",
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": "18"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsup src",
"start": "node dist/server.js",
"lint": "eslint src --ext .ts --fix"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"devDependencies": {
"@rocketseat/eslint-config": "^2.2.2",
"@types/node": "^20.14.2",
"prettier-eslint": "^16.3.0",
"prisma": "^5.16.1",
"ts-node": "^10.9.2",
"tsx": "^4.11.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@fastify/cookie": "^6.0.0",
"@fastify/cors": "^9.0.1",
"@prisma/client": "^5.15.0",
"dotenv": "^16.4.5",
"fastify": "^4.27.0",
"fastify-bcrypt": "^1.0.1",
"fastify-cookie": "^5.7.0",
"fastify-plugin": "^4.5.1",
"fastify-type-provider-zod": "^1.2.0",
"tsup": "^8.1.0",
"zod": "^3.23.8"
}
}