-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "onpholio",
"module": "index.ts",
"type": "module",
"version": "2.0.0",
"scripts": {
"dev": "tsx watch --env-file .env src/http/index.ts",
"start": "tsx src/http/index.ts",
"build": "prisma generate && tsup src",
"prepare": "husky",
"commit": "git-cz",
"migratedev": "dotenv -e .env.development -- pnpm prisma migrate dev",
"migrateprod": "dotenv -e .env.production -- pnpm prisma migrate deploy"
},
"prisma": {
"seed": "tsx src/database/seed.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@fastify/swagger": "^9.4.0",
"@fastify/swagger-ui": "^5.2.0",
"@scalar/fastify-api-reference": "^1.25.98",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"prisma": "^6.1.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@fastify/cookie": "^10.0.1",
"@fastify/cors": "^10.0.1",
"@fastify/jwt": "^9.0.1",
"@prisma/client": "^6.1.0",
"@scalar/themes": "^0.9.58",
"@types/bcryptjs": "^2.4.6",
"bcryptjs": "^2.4.3",
"fastify": "^5.0.0",
"fastify-type-provider-zod": "^4.0.1",
"jsonwebtoken": "^9.0.2",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"zod": "^3.23.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}