# Clone repo and install deps
yarn
# Run dev server with hot reload at localhost:8080
yarn dev
# Run sass-lint
yarn lint:sass
# Run ESlint
yarn lint:es
# Run all linters
yarn lint
# Run Unit tests
yarn test:unit
# Run e2e tests
yarn test:e2e
# Build for production with minification
yarn build
# Build for production and view the bundle analyzer report
yarn build --report
# Run production server
yarn start
For a detailed explanation on how things work, check out the guide and docs for vue-loader.