-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.06 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.06 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
57
58
59
60
61
62
63
64
65
{
"name": "backend",
"version": "0.15.18",
"description": "PoliNetwork backend server",
"private": true,
"keywords": [],
"author": "PoliNetwork APS",
"license": "ISC",
"type": "module",
"scripts": {
"dev": "bun --watch --no-clear-screen ./src/server.ts | pino-pretty",
"build": "shx rm -rf dist && bun build ./src/server.ts --production --outdir ./dist --sourcemap=linked --target bun && shx cp -r ./drizzle ./dist/",
"build:npm": "NODE_ENV=production tsup --config tsup.npm.config.ts",
"email": "email dev --port 3012 --dir src/emails/templates",
"start": "bun run ./dist/server.js",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"typecheck": "tsc --noEmit",
"check": "biome check",
"check:fix": "biome check --write --unsafe"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@microsoft/microsoft-graph-types": "^2.43.1",
"@react-email/preview-server": "5.2.5",
"@types/bun": "^1.3.6",
"@types/nodemailer": "^7.0.5",
"@types/react": "^19.2.2",
"drizzle-kit": "^0.31.4",
"pino-pretty": "^13.1.3",
"react-email": "5.2.5",
"shx": "^0.4.0",
"socket.io-client": "^4.8.3",
"superjson": "^2.2.6",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
},
"dependencies": {
"@azure/identity": "^4.13.0",
"@better-auth/drizzle-adapter": "1.5.5",
"@better-auth/passkey": "1.5.5",
"@hono/trpc-server": "^0.4.2",
"@hono/zod-validator": "^0.7.6",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@react-email/components": "1.0.6",
"@socket.io/bun-engine": "~0.1.0",
"@socket.io/devalue-parser": "^0.1.0",
"@t3-oss/env-core": "^0.13.8",
"@trpc/server": "11.5.1",
"better-auth": "1.5.5",
"croner": "^9.1.0",
"drizzle-orm": "^0.44.7",
"hono": "^4.11.6",
"nanoid": "^5.1.6",
"node-html-parser": "^7.0.2",
"nodemailer": "^7.0.11",
"pino": "^10.3.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"socket.io": "^4.8.3",
"zod": "^4.1.11"
}
}