-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.43 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
{
"private": true,
"version": "0.0.0",
"scripts": {
"lint:js": "./node_modules/.bin/eslint --ext .js,.vue --fix resources/js",
"lint:css": "./node_modules/.bin/stylelint --fix resources/**/*.{scss,vue}",
"lint": "yarn lint:js && yarn lint:css && composer lint",
"favicon:check": "./node_modules/.bin/real-favicon check-for-update --fail-on-update .favicon/faviconData.json",
"favicon:generate": "./node_modules/.bin/real-favicon generate .favicon/faviconDescription.json .favicon/faviconData.json public",
"favicon:inject": "./node_modules/.bin/real-favicon inject .favicon/faviconData.json resources/views/modules resources/views/modules/icons.blade.php",
"favicon": "yarn favicon:check && yarn favicon:generate && yarn favicon:inject",
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "yarn dev --watch",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --host 0.0.0.0 --inline --hot --disable-host-check --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "cross-env NODE_ENV=production MIX_APP_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^3.1.0",
"babel-eslint": "^10.1.0",
"browser-sync": "^2.26.12",
"browser-sync-webpack-plugin": "^2.2.2",
"cli-real-favicon": "^0.0.8",
"cross-env": "^7.0.2",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"imagemin": "^7.0.1",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-webp": "^6.0.0",
"laravel-mix": "^5.0.5",
"laravel-mix-purgecss": "^5.0.0",
"lint-staged": "^10.2.11",
"resolve-url-loader": "^3.1.1",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"sass-resources-loader": "^2.0.3",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.1.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0",
"stylelint-webpack-plugin": "^2.1.0",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"@inertiajs/inertia": "^0.3.4",
"@inertiajs/inertia-vue": "^0.2.4",
"@inertiajs/progress": "^0.1.2",
"gsap": "^3.4.2",
"lang.js": "^1.1.14",
"lodash": "^4.17.19",
"mobile-detect": "^1.4.4",
"pxloader": "^1.1.2",
"vue": "^2.6.11",
"vue-cookies": "^1.7.3",
"vue-lodash": "^2.1.2",
"vue-meta": "^2.4.0",
"vuelidate": "^0.7.5",
"vuelidate-error-extractor": "^2.4.1",
"vuex": "^3.5.1"
},
"browserslist": [
"> 0.5%",
"> 5% in ES",
"last 2 versions",
"not dead"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.php": [
"vendor/bin/php-cs-fixer fix --config .php_cs.dist",
"vendor/bin/phpcpd"
],
"resources/js/**/*.js": [
"./node_modules/.bin/eslint --fix"
],
"resources/js/**/*.vue": [
"./node_modules/.bin/eslint --fix",
"./node_modules/.bin/stylelint --fix"
],
"resources/sass/**/*.scss": [
"./node_modules/.bin/stylelint --fix"
]
}
}