aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: d3b2fd703c6da1427f4c6c5a24df50dbbaaf6708 (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": "frontend/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": "bun run build:sass",
    "format": "prettier . --write"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "prettier": "^3.7.4"
  },
  "peerDependencies": {
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "reset-css": "^5.0.2",
    "sass": "^1.95.1",
    "scss": "^0.2.4"
  }
}