pingcrm/package.json

42 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2019-03-05 18:10:11 -03:00
{
"private": true,
"scripts": {
"dev": "npm run development",
2022-01-18 15:22:59 -03:00
"development": "mix && npm run ssr:build",
2021-12-08 14:52:56 -03:00
"fix:eslint": "eslint --ext .js,.vue resources/js/ --fix",
"fix:prettier": "prettier --write --loglevel warn 'resources/js/**/*.vue'",
"fix-code-style": "npm run fix:prettier && npm run fix:eslint",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
2019-03-05 18:10:11 -03:00
"prod": "npm run production",
2022-01-18 15:22:59 -03:00
"production": "mix --production && npm run ssr:build",
"heroku-postbuild": "npm run prod",
"ssr:build": "mix --production --mix-config=webpack.ssr.mix.js",
"ssr:serve": "node public/js/ssr.js"
2019-03-05 18:10:11 -03:00
},
"dependencies": {
2022-01-18 15:22:59 -03:00
"@inertiajs/inertia": "^0.11.0",
"@inertiajs/inertia-vue3": "^0.6.0",
"@inertiajs/progress": "^0.2.7",
"@inertiajs/server": "^0.1.0",
2021-12-08 12:15:39 -03:00
"@popperjs/core": "^2.11.0",
2022-01-18 15:22:59 -03:00
"@vue/server-renderer": "^3.2.27",
2021-12-08 13:59:08 -03:00
"autoprefixer": "^10.4.0",
2021-12-08 12:18:43 -03:00
"eslint": "^8.4.1",
"eslint-plugin-vue": "^8.2.0",
2022-01-18 15:22:59 -03:00
"laravel-mix": "^6.0.41",
2021-02-27 10:49:16 -03:00
"lodash": "^4.17.21",
2021-12-08 13:59:08 -03:00
"postcss": "^8.4.4",
2019-03-18 08:53:00 -03:00
"postcss-import": "^12.0.1",
2020-01-09 00:16:10 -03:00
"postcss-nesting": "^7.0.1",
2021-12-08 14:52:56 -03:00
"prettier": "^2.5.1",
"prettier-plugin-tailwind": "^2.2.12",
"tailwindcss": "^2.0.3",
2021-12-08 12:15:39 -03:00
"uuid": "^8.3.2",
2022-01-18 15:22:59 -03:00
"vue": "^3.2.27",
"vue-loader": "^16.2.0",
"webpack-node-externals": "^3.0.0"
2019-03-05 18:10:11 -03:00
}
}