aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: fc5d5eabc85c1e6e3a362b4b45a9b31fd3343061 (plain) (blame)
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
{
  "dependencies": {
    "express": "^4.18.2",
    "mitata": "^0.1.3",
    "peechy": "0.4.32",
    "react": "next",
    "react-dom": "next"
  },
  "private": true,
  "scripts": {
    "build-runtime": "esbuild --target=esnext  --bundle src/runtime/index.ts --format=iife --platform=browser --global-name=BUN_RUNTIME > src/runtime.out.js; cat src/runtime.footer.js >> src/runtime.out.js",
    "build-fallback": "esbuild --target=esnext  --bundle src/fallback.ts --format=iife --platform=browser --minify > src/fallback.out.js",
    "typecheck": "tsc",
    "fmt": "prettier --write './**/*.{ts,tsx,js,jsx}'",
    "lint": "eslint './**/*.d.ts' --cache",
    "lint:fix": "eslint './**/*.d.ts' --cache --fix"
  },
  "devDependencies": {
    "@types/react": "^18.0.25",
    "@typescript-eslint/eslint-plugin": "^5.31.0",
    "@typescript-eslint/parser": "^5.31.0",
    "eslint": "^8.20.0",
    "eslint-config-prettier": "^8.5.0",
    "he": "^1.2.0",
    "html-entities": "^2.3.3",
    "prettier": "^2.4.1",
    "svelte": "^3.52.0",
    "typescript": "latest"
  },
  "version": "0.0.0"
}