2026-05-12 21:05:12 +02:00
|
|
|
{
|
|
|
|
|
"name": "website",
|
|
|
|
|
"private": true,
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "nuxt build",
|
|
|
|
|
"dev": "nuxt dev",
|
|
|
|
|
"preview": "nuxt preview",
|
|
|
|
|
"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-05-13 02:02:31 +00:00
|
|
|
"@iconify-json/lucide": "^1.2.107",
|
|
|
|
|
"@iconify-json/simple-icons": "^1.2.82",
|
2026-05-12 21:05:12 +02:00
|
|
|
"@nuxt/ui": "^4.7.1",
|
2026-05-13 03:46:50 +02:00
|
|
|
"@primer/octicons": "^19.25.0",
|
2026-05-12 21:05:12 +02:00
|
|
|
"nuxt": "^4.4.5",
|
|
|
|
|
"tailwindcss": "^4.3.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-05-12 23:52:23 +02:00
|
|
|
"@iconify-json/octicon": "^1.2.23",
|
2026-05-12 21:05:12 +02:00
|
|
|
"@nuxt/eslint": "^1.15.2",
|
2026-05-13 03:46:50 +02:00
|
|
|
"@nuxt/icon": "^2.2.2",
|
2026-05-12 21:05:12 +02:00
|
|
|
"eslint": "^10.3.0",
|
2026-05-15 07:00:33 +02:00
|
|
|
"husky": "^9.1.7",
|
|
|
|
|
"lint-staged": "^17.0.4",
|
2026-05-12 21:05:12 +02:00
|
|
|
"typescript": "^6.0.3",
|
|
|
|
|
"vue-tsc": "^3.2.8"
|
2026-05-15 07:00:33 +02:00
|
|
|
}
|
|
|
|
|
}
|