comicbox/package.json

41 lines
1.1 KiB
JSON

{
"name": "comicbox",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@bmunozg/react-image-area": "^1.0.2",
"@prisma/client": "^4.1.0",
"next": "12.2.2",
"next-auth": "^4.10.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-select": "^5.4.0",
"tesseract.js": "^2.1.5",
"zod": "^3.17.10"
},
"devDependencies": {
"@types/node": "18.0.6",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.7",
"eslint": "8.20.0",
"eslint-config-next": "12.2.2",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prisma": "^4.1.0",
"tailwindcss": "^3.1.6",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}