{ "name": "dozzle", "version": "1.20.0", "description": "Realtime log viewer for docker containers. ", "scripts": { "prestart": "npm run clean", "start": "DOCKER_API_VERSION=1.38 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": "goreleaser --rm-dist", "test": "jest" }, "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.13", "buefy": "^0.8.8", "bulma": "^0.8.0", "date-fns": "^2.8.1", "hotkeys-js": "^3.7.3", "lodash.debounce": "^4.0.8", "semver": "^7.1.1", "splitpanes": "^2.2.0", "store": "^2.0.12", "vue": "^2.6.11", "vue-meta": "^2.3.1", "vue-router": "^3.1.3", "vuex": "^3.1.2" }, "devDependencies": { "@babel/core": "^7.7.7", "@babel/plugin-transform-runtime": "^7.7.6", "@vue/component-compiler-utils": "^3.1.0", "@vue/test-utils": "^1.0.0-beta.29", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^24.9.0", "concurrently": "^5.0.2", "eventsourcemock": "^2.0.0", "husky": "^3.1.0", "jest": "^24.9.0", "jest-serializer-vue": "^2.0.2", "lint-staged": "^9.5.0", "mockdate": "^2.0.5", "node-fetch": "^2.6.0", "parcel-bundler": "^1.12.4", "prettier": "^1.19.1", "sass": "^1.24.0", "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", "git add" ] }, "browserslist": [ ">5%", "not ie <= 8" ], "alias": { "vue": "./node_modules/vue/dist/vue.esm.js" }, "jest": { "clearMocks": true, "moduleFileExtensions": [ "js", "json", "vue" ], "coveragePathIgnorePatterns": [ "node_modules" ], "testPathIgnorePatterns": [ "node_modules" ], "transformIgnorePatterns": [ "node_modules" ], "watchPathIgnorePatterns": [ "/node_modules/" ], "snapshotSerializers": [ "jest-serializer-vue" ], "transform": { ".*\\.vue$": "vue-jest", ".+\\.js$": "babel-jest" } } }