-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.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
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
{
"name": "imposter-game",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:party": "npm run dev --prefix server",
"build": "tsc -b && vite build",
"lint": "eslint .",
"assets:brand": "node scripts/rasterize-brand-assets.mjs",
"gen:sfx": "node scripts/gen-sfx-wav.mjs",
"preview": "vite preview",
"test:e2e": "playwright test",
"deploy": "node scripts/deploy.mjs all",
"deploy:all": "node scripts/deploy.mjs all",
"deploy:sync": "node scripts/deploy.mjs sync",
"deploy:worker": "node scripts/deploy.mjs worker",
"deploy:partykit": "node scripts/deploy.mjs partykit",
"deploy:pages": "node scripts/deploy.mjs pages",
"deploy:token-worker": "node scripts/deploy.mjs worker"
},
"dependencies": {
"@discord/embedded-app-sdk": "^2.4.1",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-slot": "^1.2.3",
"@supabase/ssr": "^0.10.0",
"@supabase/supabase-js": "^2.101.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"i18next": "^26.0.3",
"lucide-react": "^1.7.0",
"partysocket": "^1.1.16",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^17.0.2",
"shadcn": "^4.1.2",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.59.1",
"@rolldown/plugin-babel": "^0.2.1",
"@tailwindcss/vite": "^4.2.2",
"@types/babel__core": "^7.20.5",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.27",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"postcss": "^8.5.8",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.57.0",
"vite": "^8.0.1",
"wait-on": "^9.0.4",
"wrangler": "^4.54.0"
}
}