-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.38 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
{
"name": "makeshift-dev",
"version": "0.4.1",
"private": true,
"description": "草台编子识字班 — 平民编程 / AI 编程 / 互助学习课程社区",
"scripts": {
"dev": "next dev",
"build": "next build",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"upload": "opennextjs-cloudflare build && opennextjs-cloudflare upload",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "node --experimental-strip-types --test tests/auth-rate-limit-policy.test.ts",
"validate:data": "node scripts/validate-public-data.mjs",
"check": "pnpm validate:data && pnpm typecheck && pnpm test",
"course:lint": "node scripts/lint-course-markdown.mjs",
"course:import": "node scripts/import-course-section.mjs",
"course:discussions:backfill": "node scripts/backfill-course-discussions.mjs",
"forum:subscriptions:backfill-authors": "node scripts/backfill-forum-author-subscriptions.mjs",
"cf:typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts",
"db:generate": "drizzle-kit generate",
"db:migrate:local": "wrangler d1 migrations apply makeshift-dev --local",
"db:migrate:remote": "wrangler d1 migrations apply makeshift-dev --remote",
"db:migrations:list": "wrangler d1 migrations list makeshift-dev"
},
"dependencies": {
"better-auth": "^1.6.20",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"highlight.js": "^11.11.1",
"katex": "^0.17.0",
"lowlight": "^3.3.0",
"lucide-react": "^1.27.0",
"next": "^15.3.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-cjk-friendly": "^2.3.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"tailwind-merge": "^3.0.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260621.1",
"@opennextjs/cloudflare": "^1.19.11",
"@tailwindcss/postcss": "^4.1.0",
"@types/hast": "^3.0.5",
"@types/node": "^22.13.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"drizzle-kit": "^0.31.10",
"postcss": "^8.5.0",
"sharp": "^0.35.2",
"tailwindcss": "^4.1.0",
"typescript": "^5.8.0",
"wrangler": "^4.103.0"
},
"packageManager": "pnpm@10.13.1"
}