adrema/package.json

42 lines
1.4 KiB
JSON
Raw Normal View History

2020-04-10 20:32:12 +02:00
{
"private": true,
"scripts": {
"dev": "npm run development",
2022-02-10 02:18:57 +01:00
"development": "npx mix build",
"watch": "npx mix watch",
"hot": "npx mix watch --hot",
"prod": "npx mix build --production",
"production": "npm run prod",
2022-11-23 00:04:02 +01:00
"img": "rm -R public/img && cd resources/img/svg && npx svg-sprite -s --symbol-dest=sprite *.svg && mv sprite/svg/sprite.css.svg ../sprite.svg && rm -R sprite && cd ../../../ && cp -R resources/img public/img",
2022-02-12 14:19:00 +01:00
"lint": "eslint \"resources/js/**/*.{js,vue}\"",
"fix": "eslint \"resources/js/**/*.{js,vue}\" --fix"
2020-04-10 20:32:12 +02:00
},
"devDependencies": {
2022-02-10 02:35:39 +01:00
"autoprefixer": "latest",
2023-02-26 20:51:59 +01:00
"axios": "^1.3.4",
2022-02-12 14:19:00 +01:00
"eslint": "^8.9.0",
"eslint-plugin-vue": "^8.4.1",
2021-04-10 19:45:11 +02:00
"laravel-mix": "^6.0.1",
2022-02-10 02:18:57 +01:00
"postcss": "^8.4.6",
2023-03-06 22:59:11 +01:00
"tailwindcss": "^3.2",
2023-04-29 23:15:07 +02:00
"vue": "2.7",
2023-02-26 20:51:59 +01:00
"vue-axios": "^3.5.2",
2022-02-10 02:35:39 +01:00
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.14"
2020-04-10 20:32:12 +02:00
},
"dependencies": {
2022-02-10 02:35:39 +01:00
"@inertiajs/inertia": "^0.11.0",
"@inertiajs/inertia-vue": "^0.8.0",
2023-05-08 15:11:16 +02:00
"@tailwindcss/typography": "^0.5.9",
2022-02-12 15:19:59 +01:00
"lodash": "^4.17.21",
2022-02-10 02:35:39 +01:00
"merge": "^2.1.1",
2023-04-29 23:15:07 +02:00
"pinia": "^2.0.35",
2022-12-04 23:40:35 +01:00
"portal-vue": "^2.1.7",
2021-04-10 19:45:11 +02:00
"postcss-import": "^14.0.1",
2022-11-23 00:04:02 +01:00
"svg-sprite": "^2.0.2",
2021-08-22 16:49:38 +02:00
"v-tooltip": "^2.1.3",
2023-03-04 12:02:17 +01:00
"vue-toasted": "^1.1.28",
2021-06-28 22:32:11 +02:00
"wnumb": "^1.2.0"
2020-04-10 20:32:12 +02:00
}
}