1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 14:31:44 +01:00
Files
dozzle/package.json
dependabot-preview[bot] f45cafb10c Bump mockdate from 2.0.2 to 2.0.3 (#43)
Bumps [mockdate](https://github.com/boblauer/MockDate) from 2.0.2 to 2.0.3.
- [Release notes](https://github.com/boblauer/MockDate/releases)
- [Commits](https://github.com/boblauer/MockDate/commits/v2.0.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-06-14 11:57:17 -07:00

102 lines
2.3 KiB
JSON

{
"name": "dozzle",
"version": "1.11.2",
"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 --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.11",
"bulma": "^0.7.5",
"date-fns": "^2.0.0-alpha.34",
"vue": "^2.6.10",
"vue-meta": "^2.0.3",
"vue-router": "^3.0.6"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@vue/component-compiler-utils": "^3.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"concurrently": "^4.1.0",
"eventsourcemock": "^2.0.0",
"fetch-mock": "^7.3.3",
"husky": "^2.4.1",
"jest": "^24.8.0",
"jest-serializer-vue": "^2.0.2",
"lint-staged": "^8.2.1",
"mockdate": "^2.0.3",
"node-fetch": "^2.6.0",
"parcel-bundler": "^1.12.3",
"prettier": "^1.18.2",
"sass": "^1.21.0",
"vue-hot-reload-api": "^2.3.3",
"vue-jest": "^3.0.4",
"vue-template-compiler": "^2.6.10"
},
"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": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"coveragePathIgnorePatterns": [
"node_modules"
],
"testPathIgnorePatterns": [
"node_modules"
],
"transformIgnorePatterns": [
"node_modules"
],
"watchPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"snapshotSerializers": [
"jest-serializer-vue"
],
"transform": {
".*\\.vue$": "vue-jest",
".+\\.js$": "babel-jest"
}
}
}