https://github.com/didaquis/ghibli-vue
Just a repo for learning purpose
https://github.com/didaquis/ghibli-vue
cypress husky jest vue
Last synced: about 2 months ago
JSON representation
Just a repo for learning purpose
- Host: GitHub
- URL: https://github.com/didaquis/ghibli-vue
- Owner: didaquis
- Created: 2020-06-16T21:38:23.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T08:18:28.000Z (over 2 years ago)
- Last Synced: 2025-03-11T03:47:27.113Z (about 2 months ago)
- Topics: cypress, husky, jest, vue
- Language: JavaScript
- Size: 1.35 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ghibli-vue
Pet project using: Babel, Router, Buefy, Jest, Cypress and so on!
https://ghibliapi.herokuapp.com/#
https://blog.logrocket.com/how-to-write-a-vue-js-app-completely-in-typescript/
This repos is created with these settings:
```sh
vue create your-project// tech selected: babel, router, linter/formatter, unit testing, e2e testing.
// class style component => NO
// eslint with error prevention only
// jest
// cypress// then add your favorite rules to linter
```This repo is deployed here ➡️ https://studio-ghibli-overview.netlify.app
## Project setup
```
npm install
```### Compiles and hot-reloads for development
```
npm run serve
```### Compiles and minifies for production
```
npm run build
```### Run your unit tests
```
npm run test:unit
```### Run your end-to-end tests
```
npm run test:e2e
```### Lints and fixes files
```
npm run lint
```### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).