Provides a configured development environment based off of svelte@latest
with the following:
Scripts:
# install dependencies
npm install
yarn install
# start dev server
npm run dev
yarn dev
# build for production
npm run build
yarn build
# run unit tests
npm run test:unit
yarn test:unit
# run linter
npm run lint
yarn lint
# format code
npm run format
yarn format
# preview production build
npm run preview
yarn preview