summaryrefslogtreecommitdiff
path: root/package.json
blob: af4c89ca18644d79b7884047d675aa2b4869222a (plain)
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
{
  "name": "astro-base",
  "type": "module",
  "version": "0.0.1",
  "scripts": {
    "dev": "astro dev",
    "dev:wrangler": "wrangler pages dev --compatibility-date=2024-06-27 --d1=DB=astro-base-db -- astro dev",
    "build": "astro build",
    "preview": "wrangler pages dev dist",
    "deploy": "wrangler pages deploy dist",
    "db:create": "wrangler d1 create astro-base-db",
    "db:init": "wrangler d1 execute astro-base-db --file=./schema.sql",
    "db:migrate": "wrangler d1 execute astro-base-db --file=./schema.sql --local",
    "astro": "astro"
  },
  "dependencies": {
    "@astrojs/cloudflare": "^12.6.0",
    "@astrojs/react": "^4.3.0",
    "@tailwindcss/vite": "^4.1.7",
    "@types/react": "^19.1.5",
    "@types/react-dom": "^19.1.5",
    "astro": "^5.10.1",
    "react": "^19.1.0",
    "react-dom": "^19.1.0",
    "tailwindcss": "^4.1.7",
    "wrangler": "^4.22.0"
  },
  "devDependencies": {
    "@tailwindcss/typography": "^0.5.16"
  }
}