-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.74 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
56
57
58
59
60
61
62
{
"private": true,
"version": "0.0.0",
"engines": {
"node": ">=20.16.0"
},
"engineStrict": true,
"packageManager": "[email protected]",
"scripts": {
"serve": "bun --env-file=.env.local --watch src/main.ts --minify",
"build": "bun build src/main.ts --outdir ./dist --minify --splitting --external mongoose --target node ",
"prestart": "bun run build",
"start": "bun ./dist/main.js",
"format": "bunx biome format --write .",
"lint": "bunx biome lint --write .",
"check": "bunx biome check --write .",
"husky": "bun .husky/install.mjs",
"prepare": "husky",
"generate": "plop"
},
"dependencies": {
"@types/swagger-ui-express": "^4.1.6",
"auto-bind": "^5.0.1",
"cookie-parser": "^1.4.6",
"eta": "^3.5.0",
"express": "^4.21.0",
"http-errors": "^2.0.0",
"http-status": "^1.7.4",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.6.2",
"morgan": "^1.10.0",
"omit-empty": "^1.0.0",
"slugify": "^1.6.6",
"swagger-themes": "^1.4.3",
"swagger-ui-express": "^5.0.1",
"winston": "^3.14.2",
"zod": "^3.23.8",
"zod-validation-error": "^3.3.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.1",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/bun": "^1.1.9",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/http-status": "^1.1.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/omit-empty": "^1.0.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"plop": "^4.0.1",
"typescript": "^5.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}