This commit is contained in:
2022-02-15 07:33:00 +01:00
commit 50638af575
52 changed files with 7293 additions and 0 deletions

33
package.json Executable file
View File

@@ -0,0 +1,33 @@
{
"scripts": {
"postinstall": "chmod 777 temp && chmod 777 log",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"composer:install": "docker run --rm --interactive --tty --volume ${PWD}:/app --volume ${COMPOSER_HOME:-$HOME/.composer}:/tmp composer install",
"composer:update": "docker run --rm --interactive --tty --volume ${PWD}:/app --volume ${COMPOSER_HOME:-$HOME/.composer}:/tmp composer update"
},
"dependencies": {
"@hotwired/stimulus": "^3.0.1",
"@hotwired/turbo": "^7.1.0",
"axios": "^0.25.0",
"flowbite": "^1.3.3",
"nette-forms": "^3.3.1",
"vue": "^3.2.30",
"vue-tabz": "^1.1.5"
},
"devDependencies": {
"@rollup/plugin-dynamic-import-vars": "^1.4.2",
"@tailwindcss/custom-forms": "^0.2.1",
"@vitejs/plugin-vue": "^2.2.0",
"@vue/compiler-sfc": "^3.2.30",
"autoprefixer": "^10.4.2",
"postcss": "^8.4.5",
"postcss-custom-media": "^8.0.0",
"postcss-custom-selectors": "^6.0.0",
"postcss-import": "^14.0.2",
"postcss-nesting": "^10.1.2",
"tailwindcss": "^3.0.15",
"vite": "^2.7.13"
}
}