feat: add package.json

This commit is contained in:
cupadev-admin 2026-03-08 17:14:27 +00:00
parent d119477803
commit 89c5d93701
1 changed files with 30 additions and 0 deletions

30
package.json Normal file
View File

@ -0,0 +1,30 @@
{
"name": "test-ia",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"lucide-react": "^0.344.0",
"react-scroll": "^1.9.0",
"framer-motion": "^11.0.8"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-scroll": "^1.8.10",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.18",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^5.1.4"
}
}