-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.81 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
{
"name": "perception-learning",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "A source-linked learning workspace for guided science reading, saved notes, and evidence-based interactive labs.",
"scripts": {
"dev": "npm run db:migrate:local && PERCEPTION_LOCAL_REFERENCE=1 vite",
"dev:ai": "npm run db:migrate:local && vite",
"build": "npm run cf-typegen && tsc -b && vite build",
"preview": "vite preview",
"deploy": "npm run build && wrangler deploy",
"cf-typegen": "wrangler types",
"db:migrate:local": "CI=1 wrangler d1 migrations apply perception-learning-db --local",
"db:migrate:remote": "wrangler d1 migrations apply perception-learning-db --remote",
"eval": "tsx eval/run-eval.ts",
"eval:live-audit": "tsx eval/live-audit.ts",
"eval:offline": "tsx eval/run-eval.ts --offline",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"check": "npm run test && npm run eval:offline && npm run build"
},
"dependencies": {
"@fontsource-variable/literata": "^5.2.8",
"@fontsource-variable/manrope": "^5.2.8",
"@insforge/sdk": "^1.5.0",
"@types/three": "^0.185.1",
"lucide-react": "^1.24.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"three": "^0.185.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@cloudflare/vite-plugin": "^1.45.0",
"@cloudflare/vitest-pool-workers": "^0.18.5",
"@cloudflare/workers-types": "^5.20260721.1",
"@playwright/test": "^1.61.1",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.3",
"playwright": "^1.61.1",
"tsx": "^4.20.0",
"typescript": "^7.0.2",
"vite": "^8.1.5",
"vitest": "^4.1.10",
"wrangler": "^4.112.0"
}
}