-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
104 lines (104 loc) · 2.92 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "nuxt-laravel",
"version": "4.2.9",
"description": "Nuxt cli extension for use with laravel as backend",
"main": "./lib/module.js",
"types": "./types/module.d.ts",
"engines": {
"node": ">=8.10.0"
},
"scripts": {
"assets": "cpr ./src/templates/ ./lib/templates/",
"clean": "rimraf lib types",
"build": "yarn clean && tsc -p tsconfig.build.json && yarn assets",
"lint": "eslint --ext .ts --ignore-path .gitignore ./src",
"lint:fix": "npm run lint -- --fix",
"lint:check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
"test": "jest",
"validate": "yarn lint:check && yarn lint",
"release": "yarn test && jest-badges-readme && yarn build && git add lib types 'README.md' && standard-version -a"
},
"repository": {
"type": "git",
"url": "git+https://github.com/m2sd/nuxt-laravel.git"
},
"keywords": [
"laravel",
"nuxt",
"nuxt-module",
"spa",
"vue",
"pwa"
],
"author": "Michael Marcenich <[email protected]> (https://m-squared-solutions.it)",
"license": "MIT",
"bugs": {
"url": "https://github.com/m2sd/nuxt-laravel/issues"
},
"homepage": "https://github.com/m2sd/nuxt-laravel#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@nuxt/types": "^2.14.5",
"@nuxtjs/axios": "^5.12.2",
"@nuxtjs/module-test-utils": "^1.6.3",
"@nuxtjs/proxy": "^2.0.1",
"@nuxtjs/pwa": "^3.0.2",
"@olavoparno/jest-badges-readme": "^1.5.1",
"@types/dotenv": "^8.2.0",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.13",
"@types/lodash": "^4.14.161",
"@types/request-promise": "^4.1.46",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"cpr": "^3.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"loglevel": "^1.7.0",
"nuxt": "^2.14.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"dotenv": "^8.2.0",
"execa": "^4.0.3",
"fs-extra": "^9.0.1",
"lodash": "^4.17.20"
},
"peerDependencies": {
"@nuxtjs/axios": "^5.4.1",
"@nuxtjs/proxy": "^1.3.3"
},
"optionalDependencies": {
"@nuxtjs/pwa": "^3.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn validate",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}