A website to showcase projects created by AFSpeirs
Runs the site in the development mode.
npm start
#### or start the server and open the app in a new browser tab
npm start -- --openBuild the project for production
npm run buildUsed to preview the contents of a production build
npm run preview
# Commonly used with the build command
npm run build && npm run previewLint the project and returns issues if any are found.
npm run lintCheck for typescript issues in the project
npm run check
# Can also watch for changes to files
npm run check:watchRun the end to end (e2e) test scripts
npm run testTo visually view the tests running
npm run test:open