-
-
Notifications
You must be signed in to change notification settings - Fork 1
Development Scripts
Alberto edited this page Sep 19, 2023
·
12 revisions
This is a list of all the available pnpm
scripts, they all have prefixes indicating their category (excluding the dev, build and lint scripts):
db:
lang:
storybook:
env:
vercel:
-
vite:
- not listed
"dev": "bun db:generate && bun vite:dev",
"build": "bun db:generate && bun vite:build",
"db:generate": "bun with-env drizzle-kit generate:pg",
"db:push": "bun with-env drizzle-kit push:pg",
"db:studio": "bun with-env drizzle-kit studio",
"lang:studio": "bun x @inlang/cli open editor",
"storybook": "STORYBOOK=true storybook dev -p 6006 -s static",
"storybook:build": "STORYBOOK=true storybook build -s static",
"storybook:serve": "bun x serve storybook-static"
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"env:sync": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"vercel:build": "bun db:push && bun vite:build",