- Added nuxt.config.ts for project configuration - Created package.json with necessary dependencies and scripts - Added favicon.ico for branding - Included robots.txt for search engine directives - Set up tsconfig.json for TypeScript support
28 lines
609 B
JSON
28 lines
609 B
JSON
{
|
|
"name": "web2",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "nuxt build",
|
|
"dev": "nuxt dev",
|
|
"generate": "nuxt generate",
|
|
"preview": "nuxt preview",
|
|
"postinstall": "nuxt prepare"
|
|
},
|
|
"dependencies": {
|
|
"@lucide/vue": "^1.26.0",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"nuxt": "^4.5.0",
|
|
"shadcn-nuxt": "2.8.0",
|
|
"tailwind-merge": "^3.6.0",
|
|
"vue": "^3.5.40",
|
|
"vue-router": "^5.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nuxtjs/tailwindcss": "7.0.0-beta.1",
|
|
"tailwindcss": "^4.3.3",
|
|
"tw-animate-css": "^1.4.0"
|
|
}
|
|
}
|