-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.6 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --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 --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.2",
"axios": "^0.21.2",
"bootstrap": "^4.6.0",
"cross-env": "^5.2.1",
"jquery": "^3.5.1",
"laravel-mix": "^4.1.4",
"lodash": "^4.17.21",
"popper.js": "^1.16.1",
"resolve-url-loader": "^2.3.1",
"sass": "^1.32.6",
"sass-loader": "^7.2.0",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"dependencies": {
"bootstrap-vue": "^2.21.2",
"cropper": "^4.1.0",
"jquery-jcrop": "^0.9.15",
"laravel-echo": "^1.10.0",
"noty": "^3.2.0-beta",
"pusher-js": "^6.0.3",
"vue-echo-laravel": "0.0.6"
},
"eslintConfig": {
"env": {
"es6": true,
"browser": true,
"commonjs": true,
"jquery": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:vue/recommended"
],
"rules": {
"no-unused-vars": "off",
"indent": [
"error",
4
],
"vue/script-indent": [
"error",
4,
{
"baseIndent": 1
}
],
"vue/html-indent": [
"error",
4,
{
"baseIndent": 1
}
],
"no-console": 0,
"allowImportExportEverywhere": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2017
},
"overrides": [
{
"files": [
"*.vue"
],
"rules": {
"indent": "off"
}
}
]
}
}