1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 22:39:18 +01:00
Files
dozzle/package.json
Amir Raminfar 962393a9e9 Updates libs
2021-12-26 13:11:41 -08:00

91 lines
2.6 KiB
JSON

{
"name": "dozzle",
"version": "3.10.1",
"description": "Realtime log viewer for docker containers. ",
"homepage": "https://github.com/amir20/dozzle#readme",
"bugs": {
"url": "https://github.com/amir20/dozzle/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amir20/dozzle.git"
},
"license": "ISC",
"author": "Amir Raminfar <findamir@gmail.com>",
"scripts": {
"watch:assets": "vite --open",
"watch:server": "LIVE_FS=true DOZZLE_ADDR=:3100 reflex -c .reflex",
"dev": "make fake_assets && npm-run-all -p watch:assets watch:server",
"build": "vite build",
"release": "release-it",
"test": "TZ=UTC jest",
"postinstall": "husky install"
},
"dependencies": {
"@iconify-json/carbon": "^1.0.12",
"@iconify-json/cil": "^1.0.1",
"@iconify-json/mdi": "^1.0.12",
"@iconify-json/mdi-light": "^1.0.1",
"@iconify-json/octicon": "^1.0.7",
"@oruga-ui/oruga-next": "^0.4.8",
"@oruga-ui/theme-bulma": "^0.1.5",
"@vitejs/plugin-vue": "^2.0.1",
"@vue/compiler-sfc": "^3.2.26",
"@vueuse/core": "^7.4.1",
"ansi-to-html": "^0.7.2",
"bulma": "^0.9.3",
"date-fns": "^2.27.0",
"fuzzysort": "^1.1.4",
"hotkeys-js": "^3.8.7",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"pinia": "^2.0.9",
"sass": "^1.45.1",
"semver": "^7.3.5",
"splitpanes": "^3.0.6",
"typescript": "^4.5.4",
"unplugin-auto-import": "^0.5.4",
"unplugin-icons": "^0.13.0",
"unplugin-vue-components": "^0.17.11",
"vite": "^2.7.7",
"vue": "^3.2.22",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@pinia/testing": "^0.0.9",
"@types/jest": "^27.0.3",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.throttle": "^4.1.6",
"@types/semver": "^7.3.9",
"@vue/test-utils": "^2.0.0-rc.16",
"@vue/vue3-jest": "^27.0.0-alpha.4",
"eventsourcemock": "^2.0.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"jest-mock": "^27.4.2",
"jest-serializer-vue": "^2.0.2",
"lint-staged": "^12.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"release-it": "^14.11.8",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0"
},
"lint-staged": {
"*.{js,vue,css}": [
"prettier --write"
]
},
"release-it": {
"github": {
"release": false,
"releaseNotes": "git log --pretty=format:\"* %s (%h)\" $(git describe --abbrev=0 --tags $(git rev-list --tags --skip=1 --max-count=1))...HEAD~1"
},
"npm": {
"publish": false
}
}
}