{ "name": "dozzle", "version": "1.22.8", "description": "Realtime log viewer for docker containers. ", "scripts": { "prestart": "npm run clean", "start": "concurrently 'npm run watch-server' 'npm run watch-assets'", "watch-assets": "npx parcel watch --no-source-maps --public-url '__BASE__' assets/index.html -d static", "watch-server": "reflex -c .reflex", "prebuild": "npm run clean", "build": "npx parcel build --no-source-maps --public-url '__BASE__' assets/index.html -d static", "clean": "rm -rf static/ a_main-packr.go", "release": "release-it", "test": "jest", "integration": "docker-compose -f integration/docker-compose.test.yml run --rm integration" }, "repository": { "type": "git", "url": "git+https://github.com/amir20/dozzle.git" }, "author": "", "license": "ISC", "bugs": { "url": "https://github.com/amir20/dozzle/issues" }, "homepage": "https://github.com/amir20/dozzle#readme", "dependencies": { "ansi-to-html": "^0.6.14", "buefy": "^0.8.17", "bulma": "^0.8.2", "caniuse-lite": "^1.0.30001048", "date-fns": "^2.12.0", "hotkeys-js": "^3.7.6", "lodash.debounce": "^4.0.8", "semver": "^7.3.2", "splitpanes": "^2.2.1", "store": "^2.0.12", "vue": "^2.6.11", "vue-meta": "^2.3.3", "vue-router": "^3.1.6", "vuex": "^3.3.0" }, "devDependencies": { "@babel/core": "^7.9.6", "@babel/plugin-transform-runtime": "^7.9.6", "@vue/component-compiler-utils": "^3.1.2", "@vue/test-utils": "^1.0.0-beta.33", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^25.5.1", "concurrently": "^5.2.0", "eventsourcemock": "^2.0.0", "husky": "^4.2.5", "jest": "^25.5.2", "jest-serializer-vue": "^2.0.2", "lint-staged": "^10.2.1", "mockdate": "^2.0.5", "node-fetch": "^2.6.0", "parcel-bundler": "^1.12.4", "prettier": "^2.0.5", "release-it": "^13.5.7", "sass": "^1.26.5", "vue-hot-reload-api": "^2.3.4", "vue-jest": "^3.0.5", "vue-template-compiler": "^2.6.11" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,vue,css}": [ "prettier --write" ] }, "browserslist": [ ">5%" ], "alias": { "vue": "./node_modules/vue/dist/vue.runtime.esm.js" }, "jest": { "clearMocks": true, "moduleFileExtensions": [ "js", "json", "vue" ], "coveragePathIgnorePatterns": [ "node_modules" ], "testPathIgnorePatterns": [ "node_modules", "/integration/" ], "transformIgnorePatterns": [ "node_modules" ], "watchPathIgnorePatterns": [ "/node_modules/" ], "snapshotSerializers": [ "jest-serializer-vue" ], "transform": { ".*\\.vue$": "vue-jest", ".+\\.js$": "babel-jest" } }, "release-it": { "github": { "release": true }, "npm": { "publish": false } } }