2019-11-14 16:11:43 +01:00
{
"name" : "ulogger-server" ,
"version" : "1.0.0" ,
"description" : "This is a web application for real-time collection of geolocation data, tracks viewing and management. Together with a dedicated [μlogger mobile client](https://github.com/bfabiszewski/ulogger-android) it may be used as a complete self hosted server– client solution for logging and monitoring users' geolocation." ,
2019-11-29 16:53:50 +01:00
"main" : "js/src/ulogger.js" ,
2019-11-14 16:11:43 +01:00
"scripts" : {
"test" : "karma start karma.conf.js" ,
2019-11-29 16:53:50 +01:00
"start" : "webpack-dev-server --open --config webpack.dev.js" ,
2020-05-06 09:35:50 +02:00
"lint:css" : "stylelint css/src/main.css" ,
2020-01-06 21:17:55 +01:00
"lint:js" : "eslint js/src/*.js" ,
2019-12-30 14:02:24 +01:00
"build" : "webpack --config webpack.prod.js" ,
"build:dev" : "webpack --config webpack.dev.js"
2019-11-14 16:11:43 +01:00
} ,
"repository" : {
"type" : "git" ,
"url" : "ssh://git@git.fabiszewski.net/~/ulogger-server.git"
} ,
"author" : "Bartek Fabiszewski" ,
"license" : "GPL-3.0-or-later" ,
"devDependencies" : {
2020-12-26 21:32:31 +01:00
"@babel/cli" : "^7.12.10" ,
"@babel/core" : "^7.12.10" ,
"@babel/plugin-transform-runtime" : "^7.12.10" ,
"@babel/preset-env" : "^7.12.11" ,
2020-03-30 12:39:30 +02:00
"babel-eslint" : "^10.1.0" ,
2020-12-26 21:32:31 +01:00
"babel-loader" : "^8.2.2" ,
2019-11-14 16:11:43 +01:00
"browserlist" : "^1.0.1" ,
2019-11-29 16:53:50 +01:00
"clean-webpack-plugin" : "^3.0.0" ,
2020-12-26 21:32:31 +01:00
"copy-webpack-plugin" : "^7.0.0" ,
"core-js" : "^3.8.1" ,
"csso" : "^4.2.0" ,
"eslint" : "^7.16.0" ,
2020-09-28 21:26:53 +02:00
"eslint-plugin-import" : "^2.22.1" ,
2020-05-16 22:24:54 +02:00
"eslint-plugin-jasmine" : "^4.1.1" ,
2020-12-26 21:32:31 +01:00
"husky" : "^4.3.6" ,
2019-12-19 23:04:12 +01:00
"istanbul-instrumenter-loader" : "^3.0.1" ,
2020-12-26 21:32:31 +01:00
"jasmine" : "^3.6.3" ,
2020-09-28 21:26:53 +02:00
"karma" : "^5.2.3" ,
2019-11-14 16:11:43 +01:00
"karma-chrome-launcher" : "^3.1.0" ,
2020-06-10 22:16:10 +02:00
"karma-coverage-istanbul-reporter" : "^3.0.3" ,
2020-08-29 14:33:08 +02:00
"karma-jasmine" : "^4.0.1" ,
"karma-sourcemap-loader" : "^0.3.8" ,
2020-12-26 21:32:31 +01:00
"karma-webpack" : "^v5.0.0-alpha.5" ,
2020-04-04 17:20:01 +02:00
"prepush-if-changed" : "^1.0.8" ,
2020-12-26 21:32:31 +01:00
"puppeteer" : "^5.5.0" ,
2020-07-24 14:19:10 +02:00
"regenerator-runtime" : "^0.13.7" ,
2020-12-26 21:32:31 +01:00
"stylelint" : "^13.8.0" ,
2020-02-17 14:09:20 +01:00
"stylelint-config-standard" : "^20.0.0" ,
2020-12-26 21:32:31 +01:00
"terser-webpack-plugin" : "^5.0.3" ,
"webpack" : "^5.11.0" ,
"webpack-cli" : "^4.3.0" ,
"webpack-merge" : "^5.7.3"
2019-11-14 16:11:43 +01:00
} ,
"dependencies" : {
2020-12-26 21:32:31 +01:00
"@babel/runtime" : "^7.12.5" ,
"@babel/runtime-corejs3" : "^7.12.5" ,
2019-12-19 23:04:12 +01:00
"chartist" : "^0.11.4" ,
2019-12-25 22:24:25 +01:00
"chartist-plugin-axistitle" : "0.0.7" ,
2020-08-29 14:33:08 +02:00
"ol" : "^6.4.3"
2019-11-14 16:11:43 +01:00
} ,
2020-01-06 21:17:55 +01:00
"babel" : {
"presets" : [
[
"@babel/preset-env" ,
{
2020-04-04 17:20:01 +02:00
"useBuiltIns" : "entry" ,
"corejs" : 3
2020-01-06 21:17:55 +01:00
}
]
] ,
"plugins" : [
2020-04-04 17:20:01 +02:00
[
"@babel/plugin-transform-runtime" ,
{
"corejs" : 3
}
]
2020-01-06 21:17:55 +01:00
]
} ,
"stylelint" : {
"extends" : "stylelint-config-standard" ,
"rules" : {
"selector-list-comma-newline-after" : "always-multi-line" ,
"no-descending-specificity" : null
}
} ,
2019-11-14 16:11:43 +01:00
"browserslist" : [
"defaults"
2020-04-04 17:20:01 +02:00
] ,
"husky" : {
"hooks" : {
2020-04-11 21:31:55 +02:00
"pre-push" : "node .githooks/build-status.js"
2020-04-04 17:20:01 +02:00
}
}
2019-11-14 16:11:43 +01:00
}