Files
ckeproekt/package.json

59 lines
1.6 KiB
JSON

{
"name": "cke",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"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",
"react-dom": "^19.0.0",
"react-input-mask": "^2.0.4",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-input-mask": "^3.0.6",
"eslint": "^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"
}
}