An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

        

# Laranuxt


Laravel
Vue.js
Nuxt.js
Vuetify
ESLint
Jest

## Laravel + Nuxt.js template

[![](https://img.shields.io/badge/nuxt.js-v2.14.5-04C690.svg)](https://nuxtjs.org)
[![](https://img.shields.io/badge/Laravel-v8.0.3-ff2e21.svg)](https://laravel.com)
[![](https://img.shields.io/badge/Vuetify-v2.3.10-1697F6.svg)](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
```