aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 543b5bf599cb665e0cfa29b78f30504f8bd2b416 (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
{
  "name": "small-web",
  "module": "index.ts",
  "type": "module",
  "private": true,
  "scripts": {
    "build:sass": "sass --no-source-map --style=compressed frontend/scss/main.scss dist/styles.css",
    "watch:sass": "sass --watch frontend/scss/main.scss dist/styles.css",
    "build:js": "bun build ./index.ts --outdir ./dist --minify",
    "build": "bun run build:sass && bun run build:js"
  },
  "devDependencies": {
    "@types/bun": "latest"
  },
  "peerDependencies": {
    "typescript": "^5"
  },
  "dependencies": {
    "htmx.org": "2.0.7",
    "reset-css": "^5.0.2",
    "sass": "^1.93.2",
    "scss": "^0.2.4"
  }
}