- 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.
44 lines
1.1 KiB
JSON
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"
|
|
}
|
|
}
|