-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.41 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
53
54
55
56
{
"name": "form-engine-backend",
"version": "1.0.50",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"check": "biome check .",
"typecheck": "tsc --noEmit",
"test": "bun test",
"build": "bun build src/index.ts --outdir dist --target bun --minify",
"prepare": "husky",
"start": "bun src/index.ts",
"postinstall": "prisma generate"
},
"dependencies": {
"@elysiajs/cors": "^1.4.1",
"@google/generative-ai": "^0.24.1",
"@prisma/adapter-pg": "^7.4.2",
"@prisma/client": "^7.4.2",
"@types/pdfkit": "^0.17.5",
"better-auth": "^1.5.4",
"elysia": "^1.4.27",
"file-type": "^21.3.1",
"nodemailer": "^8.0.2",
"pdfkit": "^0.17.2",
"pg": "^8.20.0",
"pino": "^10.3.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/bun": "^1.3.10",
"@types/nodemailer": "^7.0.11",
"@types/pg": "^8.18.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"pino-pretty": "^13.1.3",
"prisma": "^7.4.2",
"typescript": "^5.9.3"
},
"lint-staged": {
"**/*.{ts,js,json}": [
"bunx biome check --write --no-errors-on-unmatched"
],
".github/**/*.yml": [
"bunx biome check --write --no-errors-on-unmatched"
]
},
"resolutions": {
"hono": "^4.12.7",
"@hono/node-server": "^1.19.10",
"lodash": "^4.17.23",
"file-type": "^21.3.1"
},
"module": "src/index.ts"
}