-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
82 lines (82 loc) · 2.67 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
{
"name": "agency-webpack-mix-config",
"scripts": {
"dev": "npm run clean && NODE_ENV=development webpack-dev-server --https --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"start": "npm run clean && NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"build": "npm run clean && NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"clean": "rimraf web/dist/* web/{,**/}*{html,json}",
"fix-scripts": "eslint --fix 'src/scripts/**/*.{vue,js,jsx,mjs}'",
"test": "echo \"No test script specified\""
},
"dependencies": {
"core-js": "^3.6.5",
"vue": "^2.6.11"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"copy-webpack-plugin": "5.1.1",
"eslint": "^7.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-compat": "^3.7.0",
"eslint-plugin-vue": "^6.2.2",
"faker": "^4.1.0",
"globby": "^11.0.1",
"html-critical-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^4.3.0",
"imagemin-webpack-plugin": "^2.4.2",
"laravel-mix": "^5.0.4",
"laravel-mix-critical": "^0.1.2",
"laravel-mix-eslint": "^0.1.3",
"laravel-mix-imagemin": "1.0.3",
"laravel-mix-make-file-hash": "^2.1.0",
"laravel-mix-polyfill": "^2.0.0",
"laravel-mix-purgecss": "^5.0.0",
"laravel-mix-svg-sprite": "^1.0.1",
"laravel-mix-twig-to-html": "^1.3.0",
"node-sass": "^4.14.1",
"postcss-preset-env": "^6.7.0",
"raw-loader": "^4.0.1",
"rimraf": "^3.0.2",
"sass": "^1.26.8",
"sass-loader": "^8.0.2",
"twig-html-loader": "^0.1.7",
"vue-eslint-parser": "^7.1.0",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"Firefox ESR",
"not ie 10",
"not op_mini all",
"not op_mob 12.1",
"not baidu 7.12",
"not ie_mob 10",
"not ie_mob 11",
"not and_uc 11.8"
],
"eslintConfig": {
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "babel-eslint",
"sourceType": "module"
},
"plugins": [
"compat"
],
"rules": {
"compat/compat": "warn"
}
},
"engines": {
"node": ">=10.18.1"
},
"prettier": {
"trailingComma": "es5",
"useTabs": false,
"tabWidth": 4,
"semi": false,
"singleQuote": false
}
}