2026-05-12 21:05:12 +02:00
|
|
|
{
|
|
|
|
|
"name": "website",
|
|
|
|
|
"private": true,
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "nuxt build",
|
|
|
|
|
"dev": "nuxt dev",
|
2026-05-26 23:16:46 +02:00
|
|
|
"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-06-22 00:04:53 +00:00
|
|
|
"@iconify-json/lucide": "^1.2.114",
|
2026-06-15 00:07:33 +00:00
|
|
|
"@iconify-json/simple-icons": "^1.2.86",
|
2026-06-22 00:04:53 +00:00
|
|
|
"@nuxt/ui": "^4.9.0",
|
2026-06-08 00:02:26 +00:00
|
|
|
"@primer/octicons": "^19.28.1",
|
2026-06-09 19:42:15 +00:00
|
|
|
"nuxt": "^4.4.8",
|
2026-06-15 00:07:33 +00:00
|
|
|
"tailwindcss": "^4.3.1"
|
2026-05-12 21:05:12 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-06-08 00:02:35 +00:00
|
|
|
"@iconify-json/octicon": "^1.2.28",
|
2026-06-15 00:08:07 +00:00
|
|
|
"@nuxt/eslint": "^1.16.0",
|
2026-06-08 00:02:35 +00:00
|
|
|
"@nuxt/icon": "^2.2.3",
|
2026-06-15 00:08:07 +00:00
|
|
|
"eslint": "^10.5.0",
|
2026-05-15 07:00:33 +02:00
|
|
|
"husky": "^9.1.7",
|
2026-06-01 12:04:15 +00:00
|
|
|
"lint-staged": "^17.0.7",
|
2026-05-12 21:05:12 +02:00
|
|
|
"typescript": "^6.0.3",
|
2026-06-15 00:08:07 +00:00
|
|
|
"vue-tsc": "^3.3.5"
|
2026-05-15 07:00:33 +02:00
|
|
|
}
|
|
|
|
|
}
|