-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.34 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
{
"name": "fullstack-astro-cloudflare",
"type": "module",
"version": "0.0.1",
"scripts": {
"check-deps": "npx npm-check-updates",
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"d1:migrate:local": "wrangler d1 migrations apply fullstack-astro-cloudflare-db --local",
"d1:migrate:remote": "wrangler d1 migrations apply fullstack-astro-cloudflare-db --remote",
"drizzle:generate": "drizzle-kit generate",
"wrangler:types": "wrangler types",
"wrangler:deploy": "astro build && wrangler pages deploy"
},
"dependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/cloudflare": "^10.3.0",
"@astrojs/react": "^3.5.0",
"@aws-sdk/client-s3": "^3.592.0",
"@aws-sdk/s3-request-presigner": "^3.592.0",
"@lucia-auth/adapter-drizzle": "^1.0.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@unpic/react": "^0.1.14",
"arctic": "^1.9.1",
"astro": "^4.10.1",
"drizzle-orm": "^0.31.2",
"lucia": "^3.2.0",
"nanoid": "^5.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.4.5",
"wrangler": "^3.60.0"
},
"devDependencies": {
"@types/node": "^20.14.2",
"better-sqlite3": "^11.0.0",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.22.6"
}
}