-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.83 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.83 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
{
"name": "astrofox",
"version": "2.0.0",
"productName": "Astrofox",
"description": "Audio reactive motion graphics program",
"author": "Mike Cao <mike@mikecao.com>",
"license": "MIT",
"homepage": "https://astrofox.io",
"repository": {
"type": "git",
"url": "https://github.com/astrofox-io/astrofox"
},
"scripts": {
"dev": "dotenv next dev --turbo",
"start": "next start",
"build": "next build --turbo",
"preview": "next start",
"lint": "biome check .",
"lint-fix": "biome check . --write",
"db:generate": "drizzle-kit generate --config=drizzle.config.mjs",
"db:migrate": "drizzle-kit migrate --config=drizzle.config.mjs",
"db:push": "drizzle-kit push --config=drizzle.config.mjs"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@react-three/fiber": "^9.6.1",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.3.0",
"better-auth": "^1.6.13",
"class-variance-authority": "^0.7.1",
"classnames": "^2.3.1",
"clsx": "^2.1.1",
"debug": "^4.3.1",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"fourier-transform": "^2.3.0",
"jsmediatags": "^3.9.7",
"lucide-react": "^1.17.0",
"mime": "^4.1.0",
"next": "^16.2.6",
"next-intl": "^4.13.0",
"pg": "^8.21.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-resizable-panels": "^4.11.2",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.184.0",
"window-function": "^3.0.1",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.2",
"@types/three": "^0.184.1",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^0.31.10",
"typescript": "6.0.3"
}
}