Add complete CKE Project implementation with news management system
This commit is contained in:
15
package.json
15
package.json
@ -7,18 +7,29 @@
|
||||
"build": "next build",
|
||||
"start": "next start",
|
||||
"lint": "next lint",
|
||||
"db:generate": "prisma generate",
|
||||
"db:push": "prisma db push",
|
||||
"db:migrate": "prisma migrate dev",
|
||||
"db:studio": "prisma studio",
|
||||
"db:seed": "tsx scripts/seed.ts",
|
||||
"pm2:start": "pm2 start ecosystem.config.js",
|
||||
"pm2:stop": "pm2 stop ecosystem.config.js",
|
||||
"pm2:restart": "pm2 restart ecosystem.config.js",
|
||||
"pm2:delete": "pm2 delete ecosystem.config.js"
|
||||
},
|
||||
"prisma": {
|
||||
"seed": "tsx scripts/seed.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@prisma/client": "^6.11.1",
|
||||
"@radix-ui/react-dropdown-menu": "^2.1.6",
|
||||
"@radix-ui/react-slot": "^1.1.2",
|
||||
"@shadcn/ui": "^0.0.4",
|
||||
"bcryptjs": "^2.4.3",
|
||||
"class-variance-authority": "^0.7.1",
|
||||
"clsx": "^2.1.1",
|
||||
"framer-motion": "^12.3.1",
|
||||
"jsonwebtoken": "^9.0.2",
|
||||
"lucide-react": "^0.474.0",
|
||||
"next": "^15.3.1",
|
||||
"react": "^19.0.0",
|
||||
@ -29,6 +40,8 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/eslintrc": "^3",
|
||||
"@types/bcryptjs": "^2.4.6",
|
||||
"@types/jsonwebtoken": "^9.0.10",
|
||||
"@types/node": "^20",
|
||||
"@types/react": "^19",
|
||||
"@types/react-dom": "^19",
|
||||
@ -37,7 +50,9 @@
|
||||
"eslint-config-next": "15.1.6",
|
||||
"pm2": "^5.4.0",
|
||||
"postcss": "^8",
|
||||
"prisma": "^6.11.1",
|
||||
"tailwindcss": "^3.4.1",
|
||||
"tsx": "^4.20.3",
|
||||
"typescript": "^5"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user