-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.12 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.12 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "underlay",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "./dev.sh",
"dev:app": "tsx --env-file=.env.local server.ts",
"build": "vite build --outDir dist/client && vite build --ssr src/entry-server.tsx --outDir dist/server",
"start": "NODE_ENV=production node --import tsx/esm server.ts",
"typecheck": "tsc --noEmit",
"lint": "oxlint .",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/db/migrate.ts",
"db:seed": "tsx src/db/seed.ts",
"tool:backup": "tsx tools/backupDb.ts",
"tool:restore": "tsx tools/restore.ts",
"tool:pruneBackups": "tsx tools/pruneBackups.ts",
"tool:seed-mirror": "tsx tools/seedMirror.ts",
"test": "vitest run",
"test:watch": "vitest",
"secrets:encrypt:local": "sops -e --input-type dotenv --output-type dotenv --output .env.local.enc .env.local",
"secrets:encrypt:prod": "sops -e --input-type dotenv --output-type dotenv --output .env.prod.enc .env.prod",
"secrets:encrypt:dev": "sops -e --input-type dotenv --output-type dotenv --output .env.dev.enc .env.dev",
"secrets:decrypt:local": "sops -d --input-type dotenv --output-type dotenv --output .env.local .env.local.enc",
"secrets:decrypt:prod": "sops -d --input-type dotenv --output-type dotenv --output .env.prod .env.prod.enc",
"secrets:decrypt:dev": "sops -d --input-type dotenv --output-type dotenv --output .env.dev .env.dev.enc"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.750.0",
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.1",
"@hono/node-server": "^1",
"@sinclair/typebox": "^0.34.0",
"ajv": "^8.17.0",
"ajv-formats": "^3.0.0",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.9.0",
"codemirror": "^6.0.2",
"drizzle-orm": "^0.45.0",
"hono": "^4",
"lucide-react": "^1.11.0",
"marked": "^18.0.0",
"node-cron": "^4.0.0",
"nodemailer": "^8.0.7",
"postgres": "^3.4.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router": "^7",
"sql.js": "^1.14.1",
"tar-stream": "^3.1.8",
"tsx": "^4.19.0",
"uuid": "^14.0.0",
"zod": "^3"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.0",
"@testing-library/react": "^16.3.2",
"@types/bcrypt": "^6.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.0.0",
"@types/nodemailer": "^8.0.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@types/tar-stream": "^3.1.4",
"@vitejs/plugin-react": "^4",
"drizzle-kit": "^0.31.0",
"happy-dom": "^20.9.0",
"lint-staged": "^17.0.4",
"oxfmt": "latest",
"oxlint": "latest",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4.1.0",
"typescript": "^6.0.0",
"vite": "^6",
"vitest": "^4.1.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{ts,tsx,css,json}": "oxfmt --"
},
"packageManager": "pnpm@10.33.3"
}