-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.69 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.69 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
{
"name": "siliconharbour.dev",
"private": true,
"type": "module",
"scripts": {
"build": "react-router build",
"dev": "tsx watch server.ts",
"start": "NODE_ENV=production tsx server.ts",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"typecheck": "react-router typegen && tsc",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"create-user": "tsx scripts/create-user.ts",
"importers:validate": "tsx scripts/validate-importer-html-parsers.ts",
"sync-prod": "tsx scripts/sync-prod.ts",
"backup-prod": "tsx scripts/sync-prod.ts backup",
"migrate-prod": "tsx scripts/sync-prod.ts migrate",
"push-prod-db": "tsx scripts/sync-prod.ts push",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@jitl/quickjs-ng-wasmfile-release-asyncify": "0.31.0",
"@jitl/quickjs-ng-wasmfile-release-sync": "0.31.0",
"@mdx-js/react": "^3.1.1",
"@mdx-js/rollup": "^3.1.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@octokit/plugin-retry": "^8.1.0",
"@octokit/plugin-throttling": "^11.0.3",
"@react-router/express": "7.14.0",
"@react-router/node": "7.14.0",
"@react-router/serve": "7.14.0",
"@rehookify/datepicker": "^6.6.8",
"@sebastianwessel/quickjs": "^3.0.1",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.8.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"drizzle-orm": "^0.45.2",
"express": "^5.2.1",
"ics": "^3.11.0",
"isbot": "^5.1.37",
"jszip": "^3.10.1",
"linkedom": "^0.18.12",
"octokit": "^5.0.5",
"p-limit": "^7.3.0",
"react": "^19.2.5",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.5",
"react-image-crop": "^11.0.10",
"react-markdown": "^10.1.0",
"react-router": "7.14.0",
"rehype-pretty-code": "^0.14.3",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-mdx-frontmatter": "^5.2.0",
"satori": "^0.26.0",
"sharp": "^0.34.5",
"shiki": "^4.0.2",
"tsx": "^4.21.0",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@react-router/dev": "7.14.0",
"@tailwindcss/vite": "^4.2.2",
"@types/bcrypt": "^6.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^25",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^11.0.0",
"drizzle-kit": "^0.31.10",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"vitest": "^4.1.4"
}
}