-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "in.orbit-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsup src --format cjs",
"dev": "tsx --watch --env-file .env src/http/server.ts",
"seed": "tsx --env-file .env src/db/seed.ts",
"format": "biome format --write src/",
"lint": "biome lint --write src/",
"commit": "npx --no-install lint-staged && git-cz"
},
"lint-staged": {
"{src,apps,libs,test}/**/*.{ts,tsx}": [
"yarn format",
"yarn lint"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.1",
"@types/node": "^22.5.4",
"drizzle-kit": "^0.24.2",
"lint-staged": "^15.2.10",
"tsx": "^4.19.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@fastify/cors": "^10.0.0",
"@fastify/swagger": "^9.0.0",
"@fastify/swagger-ui": "^5.0.1",
"@paralleldrive/cuid2": "^2.2.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"dayjs": "^1.11.13",
"drizzle-orm": "^0.33.0",
"fastify": "^5.0.0",
"fastify-type-provider-zod": "^2.0.0",
"mysql2": "^3.11.1",
"tsup": "^8.3.0",
"zod": "^3.23.8"
}
}