A fullstack Sveltekit project built with:
npm install
# Used to encrypt tokens
SECRET_KEY="secret-key-here"
ENCRYPTION_METHOD="aes-256-cbc"
# Turso db
# DATABASE_URL="libsql://my-database.domain.turso.io"
# DATABASE_AUTH_TOKEN="turso-token-here"
# Local SQLite
DATABASE_URL="file:///Users/user/turso-sveltekit/packages/backend/db.sqlite"
DATABASE_AUTH_TOKEN=""
npm run dev
npm run storybook
npm run lint
npm run format
npm run build
Validates package version consistency across the repo.
Uses check-dependency-version-consistency via npx
.
npm run npm run check-versions
Checks for updates of dependencies across the repo.
Uses npm-check-updates via npx
.
npm run check-updates