Files
myeasycms-v2/package.json
giancarlo 473de45f19 Update Supabase server instructions and scripts
Updated README.md and scripts to separate the 'web application' and 'Supabase server' in the development process. Modified package.json to include specific scripts for starting, stopping, and generating the Supabase schema. Also adjusted GitHub workflow to start Supabase server before running the app and reduced retention of Playwright report artifacts from 30 to 7 days.
2024-04-11 17:01:27 +08:00

46 lines
1.6 KiB
JSON

{
"name": "next-supabase-saas-kit-turbo",
"private": true,
"engines": {
"node": ">=v18.17.1"
},
"author": {
"url": "https://makerkit.dev",
"name": "MakerKit"
},
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules dist .next",
"clean:workspaces": "turbo clean",
"dev": "cross-env FORCE_COLOR=1 turbo dev --parallel",
"dev:web": "turbo dev --parallel",
"format": "turbo format --continue -- --cache --cache-location='node_modules/.cache/.prettiercache' --ignore-path='../../.gitignore'",
"format:fix": "turbo format --continue -- --write --cache --cache-location='node_modules/.cache/.prettiercache' --ignore-path='../../.gitignore'",
"lint": "turbo lint --continue -- --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg check",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg fix",
"typecheck": "turbo typecheck",
"test": "turbo test",
"supabase:web:start": "pnpm --filter web supabase:start",
"supabase:web:stop": "pnpm --filter web supabase:stop",
"supabase:web:typegen": "pnpm --filter web supabase:typegen",
"stripe:listen": "pnpm --filter '@kit/stripe' start"
},
"prettier": "@kit/prettier-config",
"packageManager": "pnpm@8.15.5",
"workspaces": [
"apps/*",
"packages/**",
"tooling/*"
],
"dependencies": {
"@manypkg/cli": "^0.21.3",
"@turbo/gen": "^1.13.2",
"cross-env": "^7.0.3",
"pnpm": "^8.15.6",
"prettier": "^3.2.5",
"turbo": "^1.13.2",
"typescript": "^5.4.3",
"yarn": "^1.22.22"
}
}