Files
myeasycms-v2/package.json
giancarlo ee507e0816 Refactor code and improve usage of package dependencies
This commit updates the naming convention of icons from Lucide-React, moving some package dependencies to "peerDependencies" in 'team-accounts', 'admin' and 'auth'. Additionally, it includes tweaks to the development server command in apps/web package.json and adds a logger reference to the shared package. Furthermore, cleanup work has been performed within the features and UI packages, and new scripts to interact with Stripe have been added to the root package.json.
2024-03-26 01:34:19 +08:00

46 lines
1.8 KiB
JSON

{
"name": "next-supabase-saas-kit-turbo",
"private": true,
"engines": {
"node": ">=v18.17.1"
},
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules dist .next",
"clean:workspaces": "turbo clean",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push db:generate",
"db:studio": "pnpm -F db studio",
"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",
"stripe:listen": "pnpm --filter '@kit/stripe' start",
"supabase:start": "turbo dev --filter @kit/supabase-config",
"supabase:stop": "pnpm --filter '@kit/supabase-config' stop",
"supabase:reset": "pnpm --filter '@kit/supabase-config' reset",
"supabase:lint": "pnpm --filter '@kit/supabase-config' lint",
"supabase:typegen": "pnpm --filter '@kit/supabase-config' typegen"
},
"prettier": "@kit/prettier-config",
"packageManager": "npm@10.2.3",
"workspaces": [
"apps/*",
"packages/*",
"packages/features/*",
"tooling/*",
"supabase"
],
"devDependencies": {
"@manypkg/cli": "^0.21.2",
"@turbo/gen": "^1.11.3",
"cross-env": "^7.0.3",
"pnpm": "^8.15.5",
"prettier": "^3.2.4",
"turbo": "^1.13.0"
}
}