-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 782 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 782 Bytes
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
{
"name": "nodejs-challenge-02",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsup src -d build",
"lint": "eslint src --ext .ts --fix",
"test": "vitest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rocketseat/eslint-config": "^1.2.0",
"@types/node": "^20.3.1",
"@types/supertest": "^2.0.12",
"eslint": "^8.43.0",
"prisma": "^4.16.0",
"supertest": "^6.3.3",
"tsup": "^7.0.0",
"tsx": "^3.12.7",
"typescript": "^5.1.3",
"vitest": "^0.32.2"
},
"dependencies": {
"@fastify/cookie": "^8.3.0",
"@prisma/client": "^4.16.0",
"dotenv": "^16.3.1",
"fastify": "^4.18.0",
"zod": "^3.21.4"
}
}