-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 837 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
{
"name": "my-sleep-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "vitest",
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"build": "tsup src",
"clear:db": "tsx src/database/scripts/clear-db.ts"
},
"prisma": {
"seed": "tsx src/database/scripts/seed.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/vitorverasm/my-sleep-api.git"
},
"keywords": [],
"author": "Vitor Veras",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.14.4",
"tsup": "^8.1.0",
"tsx": "^4.15.6",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@prisma/client": "^5.15.0",
"fastify": "^4.28.0",
"prisma": "^5.15.0",
"zod": "^3.23.8"
}
}