https://github.com/m2sd/laranuxt
Laravel framework with integrated NuxtJs support, preconfigured for eslint, jest and vuetify.
https://github.com/m2sd/laranuxt
eslint framework jest laravel nuxt nuxtjs vuetify vuetifyjs
Last synced: 2 months ago
JSON representation
Laravel framework with integrated NuxtJs support, preconfigured for eslint, jest and vuetify.
- Host: GitHub
- URL: https://github.com/m2sd/laranuxt
- Owner: m2sd
- Created: 2019-10-15T11:10:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-01T21:08:04.000Z (over 2 years ago)
- Last Synced: 2025-04-14T17:07:07.656Z (2 months ago)
- Topics: eslint, framework, jest, laravel, nuxt, nuxtjs, vuetify, vuetifyjs
- Language: PHP
- Size: 1.87 MB
- Stars: 56
- Watchers: 5
- Forks: 15
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Laranuxt
## Laravel + Nuxt.js template
[](https://nuxtjs.org)
[](https://laravel.com)
[](https://laravel.com)For typescript support checkout the [`typescript`](https://github.com/m2sd/nuxt-laravel-starter/tree/typescript) branch.
## Scripts
```bash
# *** Global ***
# development build with nuxt dev server with hot reloading
npm run dev
# production build
npm run build
# perform tests
npm run test
# find linting errors
npm run lint
# autofix linting errors
npm run lint:fix
# check for conflicting lint rules
npm run lint:check# *** Laravel ***
# development build
npm run mix:dev
# development build with file watching
npm run mix:watch
# development build with file watching and polling
npm run mix:watch:poll
# development build with file watching, polling and hot reloading
npm run mix:hot
# production build
npm run mix:build
# perform tests (not implemented)
npm run mix:test# *** Nuxt ***
# run dev server with hot reloading
npm run nuxt:dev
# production build
npm run nuxt:build
# perform tests
npm run nuxt:test# *** Development ***
# cut a new release
npm run release
```