Base nuxt layout

This commit is contained in:
Alexis
2024-03-21 17:14:11 +01:00
parent 1abf555519
commit b86cf52839
36 changed files with 9886 additions and 3462 deletions

View File

@@ -1,43 +1,35 @@
{
"name": "rep-lookup-fr",
"version": "0.1.0",
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview --port 4173",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/vue-fontawesome": "^3.0.3",
"@tailwindcss/typography": "^0.5.4",
"@vueuse/core": "^10.1.0",
"pinia": "^2.0.35",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
"@vueuse/core": "^10.9.0",
"@vueuse/nuxt": "^10.9.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"lucide-vue-next": "^0.359.0",
"nuxt": "^3.11.1",
"radix-vue": "^1.5.3",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@types/node": "^16.11.45",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.8",
"eslint": "^8.39.0",
"eslint-plugin-vue": "^9.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.23",
"prettier": "^2.5.1",
"sass": "^1.62.0",
"tailwindcss": "^3.3.1",
"typescript": "~4.7.4",
"vite": "^4.3.1",
"vue-tsc": "^0.38.8"
"@nuxtjs/color-mode": "^3.3.3",
"@nuxtjs/tailwindcss": "^6.11.4",
"autoprefixer": "^10.4.18",
"postcss": "^8.4.37",
"sass": "^1.72.0",
"shadcn-nuxt": "^0.10.2",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2"
}
}