advdoors/apps/web/package.json
Maxim Snesarev f864f85a18 Add migration commands to justfile and update package.json for database management
- Introduced new commands in justfile for creating and running database migrations.
- Updated package.json to include migration-related scripts for easier database management.
- Added a new migrations index file to facilitate future migration implementations.
2026-04-03 02:52:35 +03:00

44 lines
1.1 KiB
JSON

{
"name": "@advdoors/web",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"clean": "rm -rf .next .turbo node_modules",
"generate:types": "payload generate:types",
"payload": "payload",
"migrate:create": "payload migrate:create",
"ci": "payload migrate && next build"
},
"dependencies": {
"@advdoors/shared": "workspace:*",
"@payloadcms/db-postgres": "^3",
"@payloadcms/next": "^3",
"@payloadcms/richtext-lexical": "^3",
"@payloadcms/storage-s3": "^3",
"graphql": "^16",
"next": "~15.4",
"payload": "^3",
"react": "^19",
"react-dom": "^19",
"sharp": "^0.33"
},
"devDependencies": {
"@advdoors/eslint-config": "workspace:*",
"@advdoors/tsconfig": "workspace:*",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"tailwindcss": "^4",
"@tailwindcss/postcss": "^4",
"postcss": "^8",
"typescript": "^5",
"eslint": "^9"
}
}