-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.15 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.15 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "back",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"engines": {
"node": "20"
},
"volta": {
"node": "20.19.4"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsup src",
"start": "node dist/server.js",
"lint": "npx biome check",
"commit": "npx commit"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/config-conventional": "^19.8.0",
"@commitlint/prompt-cli": "^19.8.0",
"@commitlint/types": "^19.8.0",
"@faker-js/faker": "^9.8.0",
"@types/node": "^22.13.9",
"conventional-changelog-atom": "^5.0.0",
"prisma": "^6.4.1",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.0.1",
"@fastify/jwt": "^9.1.0",
"@prisma/client": "^6.4.1",
"bcryptjs": "^3.0.2",
"dayjs": "^1.11.13",
"dotenv": "^16.5.0",
"fastify": "^5.3.2",
"nanoid": "^5.1.5",
"resend": "^6.5.2",
"zod": "^3.24.2"
}
}