-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"name": "mathemagics-interactive",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "인터랙티브 암산 학습 웹앱 (Vite + Svelte 5 + TypeScript)",
"scripts": {
"i18n": "paraglide-js compile --project ./project.inlang --outdir ./src/lib/paraglide --strategy baseLocale",
"prepare": "npm run i18n",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"server": "bun run server/index.ts",
"roundtrip": "bun run server/roundtrip.ts",
"check": "npm run i18n && svelte-check --tsconfig ./tsconfig.json",
"test": "vitest run",
"test:e2e": "playwright test"
},
"dependencies": {
"dexie": "^4.4.4",
"hono": "^4.12.32"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@inlang/paraglide-js": "^2.23.0",
"@playwright/test": "^1.62.0",
"@sveltejs/vite-plugin-svelte": "^7.2.0",
"@types/node": "^22.20.1",
"fake-indexeddb": "^6.2.5",
"svelte": "^5.56.8",
"svelte-check": "^4.7.4",
"typescript": "^6.0.3",
"vite": "^8.1.5",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.10"
}
}