-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
80 lines (80 loc) · 2.66 KB
/
package.json
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
{
"name": "gatherchat",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run gen && vite build",
"preview": "vite preview",
"test": "vitest",
"deploy": "aos gcdev --load process/gatherchat.lua",
"gen": "npx tsx ./scripts/generateAll.ts",
"format": "npx @biomejs/biome format --write ./src ./scripts",
"lint": "npx @biomejs/biome lint --apply ./src ./scripts",
"lint-unsafe": "npx @biomejs/biome lint --apply-unsafe ./src ./scripts",
"check": "npx @biomejs/biome check --apply ./src ./scripts",
"check-unsafe": "npx @biomejs/biome check --apply-unsafe ./src ./scripts"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@permaweb/aoconnect": "^0.0.52",
"@pixi/react": "^7.1.2",
"@pixi/react-animated": "^7.1.2",
"@pixi/tilemap": "4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-spring/web": "^9.7.3",
"@tanstack/react-query": "5.29.0",
"@tanstack/react-router": "^1.29.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"eventemitter3": "^5.0.1",
"javascript-time-ago": "^2.5.10",
"lucide-react": "^0.372.0",
"next-themes": "^0.3.0",
"pixi.js": "7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.3",
"react-resizable-panels": "^2.0.18",
"sonner": "^1.4.41",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"throttle-debounce": "^5.0.0",
"vite-plugin-node-polyfills": "^0.21.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@biomejs/biome": "^1.7.0",
"@tanstack/react-query-devtools": "^5.29.0",
"@tanstack/router-devtools": "^1.29.2",
"@tanstack/router-vite-plugin": "^1.30.0",
"@types/node": "^20.12.7",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/throttle-debounce": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"tsc": "^2.0.4",
"tsx": "^4.9.3",
"typescript": "^5.4.5",
"vite": "^5.2.0",
"vite-plugin-deadfile": "^1.2.4",
"vite-plugin-pwa": "^0.19.8",
"vitest": "^1.6.0"
}
}