-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.54 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
{
"name": "qttn",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"deploy": "wrangler deploy",
"preview": "astro preview",
"astro": "astro",
"format": "oxfmt .",
"lint": "oxlint .",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:migrate-prod": "PROD=true drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:studio-prod": "PROD=true drizzle-kit studio",
"db:dev": "turso dev --db-file local.db"
},
"dependencies": {
"@astrojs/cloudflare": "^12.6.12",
"@astrojs/mdx": "^4.3.13",
"@astrojs/react": "^4.4.2",
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/merriweather": "^5.2.6",
"@fontsource/lilex": "^5.2.1",
"@libsql/client": "^0.17.0",
"@oslojs/crypto": "^1.0.1",
"@tailwindcss/vite": "^4.1.18",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@xstate/react": "^6.0.0",
"@xstate/store-react": "^1.0.1",
"astro": "^5.17.1",
"drizzle-orm": "^0.45.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"recharts": "^3.7.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"tailwind-merge": "^3.4.1",
"tailwindcss": "^4.1.18",
"xstate": "^5.28.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/mdast": "^4.0.4",
"daisyui": "^5.5.18",
"dotenv": "^17.3.1",
"drizzle-kit": "^0.31.9",
"oxfmt": "^0.32.0",
"oxlint": "^1.47.0",
"wrangler": "^4.65.0"
}
}