-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.36 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
{
"name": "survival-kit-app",
"version": "0.1.0",
"private": true,
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "node scripts/run-next.mjs dev",
"build": "next build",
"start": "node scripts/run-next.mjs start",
"lint": "eslint app components lib",
"typecheck": "tsc --noEmit",
"ingest": "tsx scripts/ingest.ts",
"ingest:md": "tsx scripts/ingest-md.ts",
"db:check": "tsx scripts/db/schema-check.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:mobile-fit": "tsx scripts/dev/render-fit-harness.tsx && node scripts/dev/check-mobile-fit.mjs",
"story:svg": "node scripts/gen-story-svgs.mjs",
"story:check": "node scripts/gen-story-svgs.check.mjs",
"social:check": "node scripts/social/check-post-lengths.mjs",
"report:ops": "tsx scripts/reports/ops.ts",
"report:growth": "tsx scripts/reports/growth.ts",
"report:cost": "tsx scripts/reports/cost.ts",
"report:finance": "tsx scripts/reports/finance.ts",
"report:finance:weekly": "tsx scripts/reports/finance.ts --weekly",
"report:security": "tsx scripts/reports/security.ts"
},
"dependencies": {
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-sql": "^6.10.0",
"@supabase/ssr": "^0.12.0",
"@supabase/supabase-js": "^2.49.4",
"@uiw/react-codemirror": "^4.25.10",
"@vercel/sandbox": "^2.2.1",
"katex": "^0.16.47",
"next": "^16.3.2",
"pyodide": "^314.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"resend": "^6.21.0",
"sql.js": "^1.14.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@fontsource/fraunces": "^5.2.9",
"@fontsource/inter-tight": "^5.2.7",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sql.js": "^1.4.11",
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10",
"cross-env": "^10.1.0",
"eslint": "^9",
"eslint-config-next": "^16.3.2",
"jsdom": "^29.1.1",
"pdf-parse": "^1.1.1",
"postcss": "^8",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5",
"vitest": "^4.1.8"
}
}