My personal site
cherry.computer
htmx
tailwind
axum
askama
1{
2 "name": "autobivo",
3 "version": "1.0.0",
4 "description": "Personal site for Ivo Murrell",
5 "main": "index.js",
6 "type": "module",
7 "devDependencies": {
8 "@eslint/js": "^9.34.0",
9 "@tailwindcss/cli": "^4.1.12",
10 "@types/node": "^24.3.0",
11 "browserslist": "^4.25.3",
12 "esbuild": "^0.25.9",
13 "esbuild-plugin-browserslist": "^1.0.1",
14 "eslint": "^9.34.0",
15 "eslint-config-prettier": "^10.1.8",
16 "globals": "^16.3.0",
17 "minimist": "^1.2.8",
18 "typescript": "^5.9.2",
19 "typescript-eslint": "^8.41.0"
20 },
21 "scripts": {
22 "build": "node esbuild.js",
23 "build:production": "node esbuild.js --prod",
24 "start": "node esbuild.js --serve",
25 "lint": "eslint && tsc",
26 "test": "echo \"Error: no test specified\" && exit 1"
27 },
28 "author": "Ivo Murrell",
29 "license": "MIT",
30 "repository": {
31 "type": "git",
32 "url": "https://github.com/ivomurrell/myivo.git"
33 },
34 "dependencies": {
35 "htmx.org": "^2.0.8",
36 "tailwindcss": "^4.1.12"
37 },
38 "volta": {
39 "extends": "../package.json"
40 }
41}