-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
57 lines (57 loc) · 2.21 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll",
"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",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"lint": "./node_modules/.bin/eslint -c .eslintrc.js --ignore-path .gitignore resources/js/** --ext .js,.vue --max-warnings=0",
"lint-fix": "./node_modules/.bin/eslint -c .eslintrc.js --ignore-path .gitignore resources/js/** --ext .js,.vue --fix"
},
"lint-staged": {
"*.{js,vue}": [
"./node_modules/.bin/eslint -c .eslintrc.js --fix --max-warnings=0"
],
"*.php": [
"vendor/bin/php-cs-fixer fix --diff --config=.php-cs-fixer.dist.php"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"browser-sync": "^2.26.14",
"browser-sync-webpack-plugin": "^2.0.1",
"eslint": "^7.20.0",
"eslint-plugin-vue": "^7.6.0",
"husky": "4",
"lint-staged": "11.1.2"
},
"dependencies": {
"@fortawesome/fontawesome-free": "5.15.4",
"@websanova/vue-auth": "4.1.8",
"axios": "^0.24.0",
"cross-env": "^7.0.3",
"dayjs": "^1.10.7",
"element-ui": "2.15.6",
"laravel-mix": "^6.0.39",
"lodash": "4.17.21",
"postcss": "^8.4.5",
"resolve-url-loader": "4.0.0",
"sass": "1.45.2",
"sass-loader": "12.4.0",
"vue": "^2.6.14",
"vue-axios": "^3.4.0",
"vue-i18n": "8.26.8",
"vue-loader": "^15.9.7",
"vue-router": "3.5.3",
"vue-template-compiler": "^2.6.14",
"vuex": "3.6.2"
}
}