-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
31 lines (31 loc) · 1.11 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
{
"license": "MIT",
"scripts": {
"lint": "eslint resources/assets/js --ext=js,vue",
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "yarn dev --watch",
"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",
"build": "yarn lint && cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"postinstall": "yarn build"
},
"eslintConfig": {
"extends": "vue",
"rules": {
"no-multi-str": "off"
}
},
"devDependencies": {
"axios": "^0.18.1",
"cross-env": "^3.1.4",
"eslint": "^4.18.2",
"eslint-config-vue": "^2.0.1",
"eslint-plugin-vue": "^1.0.0",
"laravel-mix": "^0.8.1",
"lodash": "^4.17.13",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"slugify": "^1.0.2",
"vue": "^2.0.1"
},
"dependencies": {}
}