mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 18:52:06 +00:00
99 lines
3.0 KiB
JSON
99 lines
3.0 KiB
JSON
{
|
|
"name": "biergarten",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"prestart": "npm run build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"clear-db": "npx ts-node ./src/prisma/seed/clear/index.ts",
|
|
"format": "npx prettier . --write; npx prisma format;",
|
|
"format-watch": "npx onchange \"**/*\" -- prettier --write --ignore-unknown {{changed}}",
|
|
"seed": "npx --max-old-space-size=4096 ts-node ./src/prisma/seed/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"@hapi/iron": "^7.0.1",
|
|
"@headlessui/react": "^1.7.15",
|
|
"@headlessui/tailwindcss": "^0.2.0",
|
|
"@hookform/resolvers": "^3.3.1",
|
|
"@mapbox/mapbox-sdk": "^0.15.2",
|
|
"@mapbox/search-js-core": "^1.0.0-beta.17",
|
|
"@mapbox/search-js-react": "^1.0.0-beta.17",
|
|
"@next/bundle-analyzer": "^14.0.3",
|
|
"@prisma/client": "^5.7.0",
|
|
"@react-email/components": "^0.0.11",
|
|
"@react-email/render": "^0.0.9",
|
|
"@react-email/tailwind": "^0.0.12",
|
|
"@vercel/analytics": "^1.1.0",
|
|
"argon2": "^0.31.1",
|
|
"classnames": "^2.5.1",
|
|
"cloudinary": "^1.41.0",
|
|
"cookie": "^0.5.0",
|
|
"date-fns": "^2.30.0",
|
|
"dotenv": "^16.3.1",
|
|
"jsonwebtoken": "^9.0.1",
|
|
"lodash": "^4.17.21",
|
|
"mapbox-gl": "^3.4.0",
|
|
"multer": "^1.4.5-lts.1",
|
|
"next": "^14.1.1",
|
|
"next-cloudinary": "^5.10.0",
|
|
"next-connect": "^1.0.0-next.3",
|
|
"passport": "^0.6.0",
|
|
"passport-local": "^1.0.0",
|
|
"pino": "^8.14.1",
|
|
"react": "^18.2.0",
|
|
"react-daisyui": "^5.0.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-email": "^1.9.5",
|
|
"react-hook-form": "^7.45.2",
|
|
"react-hot-toast": "^2.4.1",
|
|
"react-icons": "^4.10.1",
|
|
"react-intersection-observer": "^9.5.2",
|
|
"react-map-gl": "^7.1.7",
|
|
"react-responsive-carousel": "^3.2.23",
|
|
"swr": "^2.2.0",
|
|
"theme-change": "^2.5.0",
|
|
"zod": "^3.21.4"
|
|
},
|
|
"devDependencies": {
|
|
"@faker-js/faker": "^8.3.1",
|
|
"@types/cookie": "^0.5.1",
|
|
"@types/express": "^4.17.21",
|
|
"@types/jsonwebtoken": "^9.0.2",
|
|
"@types/lodash": "^4.14.195",
|
|
"@types/mapbox__mapbox-sdk": "^0.13.4",
|
|
"@types/multer": "^1.4.7",
|
|
"@types/node": "^20.4.2",
|
|
"@types/passport-local": "^1.0.35",
|
|
"@types/react": "^18.2.15",
|
|
"@types/react-dom": "^18.2.7",
|
|
"@vercel/fetch": "^7.0.0",
|
|
"autoprefixer": "^10.4.14",
|
|
"daisyui": "^4.7.2",
|
|
"dotenv-cli": "^7.2.1",
|
|
"eslint": "^8.51.0",
|
|
"eslint-config-airbnb-base": "15.0.0",
|
|
"eslint-config-airbnb-typescript": "17.1.0",
|
|
"eslint-config-next": "^13.5.4",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-react": "^7.33.2",
|
|
"generate-password": "^1.7.1",
|
|
"onchange": "^7.1.0",
|
|
"postcss": "^8.4.26",
|
|
"prettier": "^3.0.0",
|
|
"prettier-plugin-jsdoc": "^1.0.2",
|
|
"prettier-plugin-tailwindcss": "^0.5.7",
|
|
"prisma": "^5.7.0",
|
|
"tailwindcss": "^3.4.1",
|
|
"tailwindcss-animated": "^1.0.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.3.2"
|
|
},
|
|
"prisma": {
|
|
"schema": "./src/prisma/schema.prisma",
|
|
"seed": "npm run seed"
|
|
}
|
|
}
|