-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
74 lines (74 loc) · 2.73 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
{
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "npm run mix:dev && npm run nuxt:dev",
"build": "npm run mix:build && npm run nuxt:build",
"lint": "eslint --ext .js,.vue .",
"lint:fix": "npm run lint -- --fix",
"lint:check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"test": "npm run mix:test && npm run nuxt:test",
"mix:dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"mix:watch": "npm run mix:dev -- --watch",
"mix:watch:poll": "npm run mix:watch -- --watch-poll",
"mix:hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"mix:build": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"mix:test": "echo no test",
"nuxt:dev": "nuxt",
"nuxt:build": "nuxt build",
"nuxt:test": "jest",
"release": "standard-version"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@nuxtjs/axios": "^5.12.0",
"@nuxtjs/eslint-config": "^2.0.2",
"@nuxtjs/eslint-module": "^1.2.0",
"@nuxtjs/vuetify": "^1.11.2",
"@vue/test-utils": "^1.1.0",
"axios": "^0.19.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.5.1",
"cross-env": "^7.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-nuxt": "^0.5.2",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^3.1.0",
"jest": "^25.5.4",
"laravel-mix": "^5.0.5",
"lint-staged": "^9.5.0",
"lodash": "^4.17.20",
"nuxt": "^2.14.5",
"nuxt-laravel": "^4.2.9",
"prettier": "^1.19.1",
"resolve-url-loader": "^3.1.0",
"sass": "^1.26.10",
"sass-loader": "^8.0.0",
"standard-version": "^9.0.0",
"vue-jest": "^3.0.6"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}