website/package.json

37 lines
856 B
JSON
Raw Normal View History

2026-05-12 21:05:12 +02:00
{
"name": "website",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"preview": "bun .output/server/index.mjs",
2026-05-12 21:05:12 +02:00
"postinstall": "nuxt prepare",
"lint": "eslint .",
2026-05-15 07:00:33 +02:00
"typecheck": "nuxt typecheck",
"prepare": "husky"
},
"lint-staged": {
"app/**/*.{js,ts,vue}": [
"eslint --fix"
]
2026-05-12 21:05:12 +02:00
},
"dependencies": {
"@iconify-json/lucide": "^1.2.115",
"@iconify-json/simple-icons": "^1.2.88",
"@nuxt/ui": "^4.9.0",
"@primer/octicons": "^19.29.1",
"nuxt": "^4.5.0",
"tailwindcss": "^4.3.2"
2026-05-12 21:05:12 +02:00
},
"devDependencies": {
"@iconify-json/octicon": "^1.2.28",
"@nuxt/eslint": "^1.16.0",
"@nuxt/icon": "^2.2.5",
"eslint": "^10.6.0",
2026-05-15 07:00:33 +02:00
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
2026-05-12 21:05:12 +02:00
"typescript": "^6.0.3",
"vue-tsc": "^3.3.5"
2026-05-15 07:00:33 +02:00
}
}