forked from minzeyaphyo/burmddit
- Replace @vercel/postgres with standard pg library - Add Dockerfile for Next.js standalone build - Add tsconfig.json, postcss.config.js - Fix globals.css undefined tailwind utilities - Force dynamic rendering for DB-dependent pages - Add .dockerignore
32 lines
638 B
JSON
32 lines
638 B
JSON
{
|
|
"name": "burmddit",
|
|
"version": "1.0.0",
|
|
"description": "Myanmar AI News & Tutorials Platform",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"next": "14.1.0",
|
|
"react": "^18",
|
|
"react-dom": "^18",
|
|
"pg": "^8.11.3",
|
|
"@types/pg": "^8.10.9"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"autoprefixer": "^10.0.1",
|
|
"postcss": "^8",
|
|
"tailwindcss": "^3.3.0",
|
|
"typescript": "^5"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|