-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.2 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
{
"name": "gkos.dev",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run",
"test:e2e": "npx playwright test --project=e2e-desktop-1440 --project=e2e-mobile-landscape-852 --project=e2e-mobile-portrait-393",
"test:visual": "npx playwright test --project=visual-regression",
"capture:baseline": "node tests/capture-baselines.mjs http://localhost:3000 tests/baselines",
"capture:current": "node tests/capture-baselines.mjs http://localhost:4321 tests/current",
"generate:assets": "node scripts/generate-tileset.mjs && node scripts/generate-map.mjs && node scripts/generate-player.mjs",
"dev:editor": "node scripts/editor-data-export.mjs && astro dev",
"new-post": "node scripts/new-post.mjs"
},
"dependencies": {
"@astrojs/mdx": "^5.0.3",
"@astrojs/react": "^5.0.3",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@astrojs/tailwind": "^6.0.2",
"@astrojs/vercel": "^10.0.4",
"@fontsource/caveat": "^5.2.8",
"@fontsource/geist-mono": "^5.2.7",
"@fontsource/geist-sans": "^5.2.5",
"@fontsource/patrick-hand": "^5.2.8",
"@mdxeditor/editor": "^3.55.0",
"@supabase/supabase-js": "^2.103.0",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"astro": "^6.1.5",
"framer-motion": "^12.38.0",
"grid-engine": "^2.48.2",
"katex": "^0.16.45",
"phaser": "^3.90.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-image-crop": "^11.0.10",
"rehype-autolink-headings": "^7.1.0",
"rehype-katex": "^7.0.1",
"rehype-slug": "^6.0.0",
"remark-math": "^6.0.0",
"resend": "^6.10.0",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.19"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@playwright/test": "^1.59.1",
"@tailwindcss/typography": "^0.5.19",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^2.1.9",
"happy-dom": "^15.11.7",
"lighthouse": "^12.8.2",
"typescript": "^6.0.2",
"vitest": "^2.1.9"
}
}