1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 14:31:44 +01:00
Files
dozzle/package.json
Amir Raminfar 35769b0d5e 1.8.2
2019-04-13 19:17:02 -07:00

64 lines
1.6 KiB
JSON

{
"name": "dozzle",
"version": "1.8.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"
},
"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": {
"bulma": "^0.7.4",
"date-fns": "^2.0.0-alpha.25",
"vue": "^2.6.10",
"vue-meta": "^1.6.0",
"vue-router": "^3.0.4"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@vue/component-compiler-utils": "^3.0.0",
"concurrently": "^4.1.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"parcel-bundler": "^1.12.3",
"prettier": "^1.17.0",
"sass": "^1.18.0",
"vue-hot-reload-api": "^2.3.3",
"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"
}
}