aboutsummaryrefslogtreecommitdiff
path: root/174bg/handbook/package.json
blob: 51a8a131f09024de8e2f78251b662ba926f8fead (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "dependencies": {
    "@tailwindcss/cli": "^4.3.0",
    "@tailwindcss/typography": "^0.5.19",
    "copyfiles": "^2.4.1",
    "npm-run-all": "^4.1.5",
    "tailwindcss": "^4.3.0",
    "wrangler": "^4.95.0"
  },
  "scripts": {
    "build-css": "npx @tailwindcss/cli -i ./source/index.css -o ./public/index.css",
    "copy-html": "npx copyfiles -u 1 ./source/index.html ./public",
    "build": "npx npm-run-all build-css copy-html",
    "deploy": "npx wrangler deploy --minify",
    "build+deploy": "npx npm-run-all build deploy"
  }
}