-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 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
{
"name": "my-astro-app",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro build && wrangler dev",
"astro": "astro",
"deploy": "astro build && wrangler deploy",
"db:generate": "drizzle-kit generate",
"db:apply:local": "wrangler d1 migrations apply DB --local",
"cf-typegen": "wrangler types"
},
"dependencies": {
"@astrojs/cloudflare": "^12.6.8",
"@astrojs/react": "^4.3.1",
"@nanostores/react": "^1.0.0",
"@types/marked": "^6.0.0",
"astro": "^5.13.7",
"better-auth": "^1.3.9",
"drizzle-orm": "^0.44.5",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"leaflet": "^1.9.4",
"marked": "^16.3.0",
"react-hot-toast": "^2.6.0",
"react-leaflet": "^5.0.0",
"webflow-api": "^3.2.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.10",
"@types/leaflet": "^1.9.20",
"@types/node": "^24.3.3",
"@webflow/data-types": "^1.0.1",
"@webflow/react": "^1.0.1",
"@webflow/webflow-cli": "^1.8.43",
"better-sqlite3": "^12.2.0",
"drizzle-kit": "^0.31.4",
"tsx": "^4.20.5",
"wrangler": "^4.36.0"
},
"peerDependencies": {
"react": "^19.1.1",
"react-dom": ">=18"
}
}