53 lines
1.8 KiB
JSON
53 lines
1.8 KiB
JSON
{
|
|
"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",
|
|
"format": "prettier --write 'resources/**/*.{css,js,vue}'"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.18.1",
|
|
"cross-env": "^5.2.1",
|
|
"dayjs": "^1.8.19",
|
|
"laravel-mix": "^4.1.4",
|
|
"laravel-mix-purgecss": "^4.2.0",
|
|
"lodash": "^4.17.15",
|
|
"portal-vue": "^2.1.7",
|
|
"postcss-import": "^11.1.0",
|
|
"postcss-nesting": "^5.0.0",
|
|
"resolve-url-loader": "^2.3.2",
|
|
"tailwindcss": "^1.1.4",
|
|
"tippy.js": "^4.3.5",
|
|
"v-clipboard": "^2.2.2",
|
|
"vue": "^2.6.11",
|
|
"vue-good-table": "^2.18.1",
|
|
"vue-multiselect": "^2.1.6",
|
|
"vue-notification": "^1.3.20",
|
|
"vue-template-compiler": "^2.6.11"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^2.7.0",
|
|
"lint-staged": "^8.2.1",
|
|
"prettier": "1.16.4"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{css,js,vue}": [
|
|
"npm run format --",
|
|
"git add"
|
|
],
|
|
"*.php": [
|
|
"composer format",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|