-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 1005 Bytes
/
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
{
"name": "vue-laravel-mix",
"license": "MIT",
"scripts": {
"webpack:base": "node_modules/webpack/bin/webpack.js --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"dev": "NODE_ENV=development yarn webpack:base --progress",
"watch": "yarn dev --watch",
"hot": "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": "NODE_ENV=production yarn webpack:base",
"lint": "eslint --ext vue,js src",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"babel-eslint": "^10.0.2",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.1.0",
"eslint-plugin-vue": "^5.2.3",
"html-webpack-plugin": "^3.2.0",
"laravel-mix": "^4.1.2",
"sass": "^1.22.7",
"sass-loader": "^7.1.0"
}
}