aboutsummaryrefslogtreecommitdiff
path: root/174bg/handbook/package.json
blob: 94ec8ca11f47fb3cea8b8a2813d1c0eb25ad410a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "dependencies": {
    "@tailwindcss/cli": "^4.3.0",
    "@tailwindcss/typography": "^0.5.19",
    "chokidar-cli": "^3.0.0",
    "copyfiles": "^2.4.1",
    "live-server": "^1.2.2",
    "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",
    "watch-css": "npx @tailwindcss/cli -i ./source/index.css -o ./public/index.css --watch",
    "watch-html": "npx chokidar \"source/**/*.html\" -c \"npm run copy-html\" --initial",
    "serve": "npx live-server public",
    "dev": "npx npm-run-all --parallel watch-css watch-html serve",
    "deploy": "npx wrangler deploy --minify",
    "build+deploy": "npx npm-run-all build deploy"
  }
}