namecard/package.json
2025-08-19 11:49:57 +08:00

41 lines
1003 B
JSON

{
"name": "rooftop-energy-namecard",
"version": "0.1.0",
"private": true,
"description": "Digital namecard application for Rooftop Energy staff",
"keywords": ["namecard", "digital", "contact", "rooftop", "energy"],
"author": "Rooftop Energy",
"license": "UNLICENSED",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next build",
"type-check": "tsc --noEmit",
"clean": "rm -rf .next out",
"setup": "npm install && npm run build"
},
"dependencies": {
"next": "14.0.4",
"react": "^18",
"react-dom": "^18",
"lucide-react": "^0.294.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}