This repository has been archived by the owner on Oct 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
67 lines (67 loc) · 1.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "laravel-nuxt",
"version": "2.0.2",
"description": "Build a SPA with Laravel and Nuxt",
"bin": {
"laravel-nuxt": "./bin/laravel-nuxt.js",
"laravel-nuxt-dev": "./bin/laravel-nuxt-dev.js",
"laravel-nuxt-build": "./bin/laravel-nuxt-build.js"
},
"main": "./src/index.js",
"files": [
"bin",
"src"
],
"scripts": {
"test": "npm run lint && ava",
"watch": "ava --watch",
"lint": "eslint .",
"release": "standard-version"
},
"dependencies": {
"@nuxtjs/axios": "^5.3.1",
"@nuxtjs/proxy": "^1.2.4",
"chalk": "^2.4.1",
"commander": "^3.0.1",
"cross-spawn": "^7.0.0",
"death": "^1.1.0",
"fs-extra": "^8.1.0",
"lodash": "^4.17.10",
"npm-which": "^3.0.1",
"nuxt": "^2.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skyrpex/laravel-nuxt-js.git"
},
"keywords": [
"nuxt",
"vue",
"laravel",
"spa"
],
"author": "Cristian Pallarés <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/skyrpex/laravel-nuxt-js/issues"
},
"homepage": "https://github.com/skyrpex/laravel-nuxt-js#readme",
"devDependencies": {
"ava": "^2.3.0",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-ava": "^8.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"glob": "^7.1.2",
"standard-version": "^7.0.0",
"tmp": "0.1.0"
},
"ava": {
"files": [
"test/**/*.spec.js"
]
}
}