website/package.json

40 lines
951 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": {
2026-07-20 20:28:53 +02:00
"@iconify-json/lucide": "^1.2.118",
"@iconify-json/simple-icons": "^1.2.91",
"@nuxt/ui": "^4.10.0",
2026-07-20 20:33:07 +02:00
"@nuxt/vite-builder": "^4.5.0",
2026-07-20 20:28:53 +02:00
"@primer/octicons": "^19.29.2",
"@unhead/ssr": "^3.2.1",
"@unhead/vue": "^3.2.1",
"nuxt": "^4.5.0",
2026-07-20 20:28:53 +02:00
"tailwindcss": "^4.3.3"
2026-05-12 21:05:12 +02:00
},
"devDependencies": {
"@iconify-json/octicon": "^1.2.29",
"@nuxt/eslint": "^1.16.0",
"@nuxt/icon": "^2.3.1",
2026-07-20 20:28:53 +02:00
"eslint": "^10.7.0",
2026-05-15 07:00:33 +02:00
"husky": "^9.1.7",
2026-07-20 20:28:53 +02:00
"lint-staged": "^17.1.0",
2026-05-12 21:05:12 +02:00
"typescript": "^6.0.3",
2026-07-20 20:28:53 +02:00
"vue-tsc": "^3.3.7"
2026-05-15 07:00:33 +02:00
}
}