-
- Downloads
update scripts and readme
... | ... | @@ -4,16 +4,15 @@ |
"private": true, | ||
"scripts": { | ||
"dev": "vite dev", | ||
"build": "vite build", | ||
"build": "prisma migrate deploy && vite build", | ||
"preview": "vite preview", | ||
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", | ||
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", | ||
"lint": "prettier --check . && eslint .", | ||
"format": "prettier --write . && prisma format", | ||
"prod:init": "prisma generate && prisma migrate deploy", | ||
"prod:build": "prisma migrate deploy && vite build", | ||
"prod:update": "git pull && npm run prod:build", | ||
"prod:start": "node build/index.js" | ||
"init": "npm i && prisma generate && prisma migrate deploy", | ||
"update": "git pull && npm run build", | ||
"start": "node build/index.js" | ||
}, | ||
"devDependencies": { | ||
"@sveltejs/adapter-auto": "^3.0.0", | ||
... | ... |
Please register or sign in to comment