forked from ben-rogerson/agency-webpack-mix-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.66 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
{
"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.2.1",
"vue": "^2.6.10"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"copy-webpack-plugin": "^5.0.4",
"eslint": "^6.4.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-vue": "^5.2.3",
"faker": "^4.1.0",
"globby": "^10.0.1",
"html-critical-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^3.2.0",
"imagemin-webpack-plugin": "^2.4.2",
"laravel-mix": "^5.0.0",
"laravel-mix-critical": "^0.1.2",
"laravel-mix-eslint": "^0.1.3",
"laravel-mix-imagemin": "1.0.3",
"laravel-mix-make-file-hash": "^1.2.0",
"laravel-mix-polyfill": "^1.1.0",
"laravel-mix-purgecss": "^4.1.0",
"laravel-mix-svg-sprite": "^1.0.0",
"laravel-mix-twig-to-html": "^1.2.0",
"node-sass": "^4.12.0",
"postcss-preset-env": "^6.7.0",
"raw-loader": "^3.1.0",
"rimraf": "^3.0.0",
"sass": "^1.22.12",
"sass-loader": "^8.0.0",
"tailwindcss": "^1.1.4",
"twig-html-loader": "^0.1.7",
"vue-eslint-parser": "^6.0.4",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.40.2"
},
"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"
}
},
"prettier": {
"trailingComma": "es5",
"useTabs": false,
"tabWidth": 4,
"semi": false,
"singleQuote": false
}
}