-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.3 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
89
90
{
"name": "terminal-learning",
"private": true,
"version": "0.0.1",
"description": "Terminal Learning — une app pour apprendre et pratiquer les commandes du terminal (design issu de Figma, build avec Vite + React).",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"prebuild": "node scripts/generate-sitemap.mjs",
"build": "vite build",
"generate-demo": "node scripts/generate-demo-gif.cjs",
"generate-demo:terminal": "node scripts/generate-demo-terminal-gif.cjs",
"generate-demo:all": "node scripts/generate-demo-gif.cjs && node scripts/generate-demo-terminal-gif.cjs",
"generate-og": "node scripts/generate-og-image.mjs",
"icons:apple": "node scripts/generate-apple-touch-icon.mjs",
"generate-sitemap": "node scripts/generate-sitemap.mjs",
"dev": "vite",
"type-check": "tsc --noEmit",
"lint": "eslint src",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"fuzz": "node --loader tsx scripts/fuzz-terminal-engine.ts",
"fuzz:batch": "node --loader tsx scripts/fuzz-terminal-engine.ts --count=200",
"test:e2e": "playwright test",
"test:e2e:mobile": "playwright test --project=mobile-iphone-se --project=mobile-galaxy",
"e2e:mobile": "playwright test --project=webkit-iphone-14 --project=webkit-iphone-se --project=webkit-iphone-15-pro-max",
"e2e:desktop": "playwright test --project=desktop-1280 --project=desktop-1920",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report",
"test:lighthouse": "lhci autorun",
"export:curriculum": "npx tsx scripts/export-curriculum.ts"
},
"dependencies": {
"@fontsource-variable/inter": "5.2.8",
"@fontsource/jetbrains-mono": "5.2.8",
"@radix-ui/react-progress": "1.1.2",
"@radix-ui/react-slot": "1.1.2",
"@sentry/node": "^10.51.0",
"@sentry/react": "^10.47.0",
"@supabase/supabase-js": "^2.105.4",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"jose": "^6.2.3",
"lucide-react": "0.487.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-helmet-async": "^3.0.0",
"react-markdown": "^10.1.0",
"react-router": "7.13.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "3.2.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.59.1",
"@resvg/resvg-js": "^2.6.2",
"@sentry/vite-plugin": "^5.2.0",
"@tailwindcss/vite": "4.1.12",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/pngjs": "^6.0.5",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vercel/node": "^5.8.2",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"fake-indexeddb": "^6.2.5",
"gif-encoder-2": "^1.0.5",
"gitleaks": "^1.0.0",
"jsdom": "^29.0.1",
"pngjs": "^7.0.0",
"tailwindcss": "4.1.12",
"typescript": "^6.0.2",
"vite": "^6.4.2",
"vitest": "^4.1.2"
}
}