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" ,
2021-08-31 20:20:33 +02:00
"build:dev" : "webpack --config webpack.dev.js" ,
"prepare" : "husky install"
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" : {
2022-07-12 11:27:30 +02:00
"@babel/cli" : "^7.18.6" ,
"@babel/core" : "^7.18.6" ,
2022-06-03 17:17:30 +02:00
"@babel/eslint-parser" : "^7.18.2" ,
2022-07-12 11:27:30 +02:00
"@babel/plugin-transform-runtime" : "^7.18.6" ,
"@babel/preset-env" : "^7.18.6" ,
2022-03-19 11:34:43 +01:00
"@jsdevtools/coverage-istanbul-loader" : "3.0.5" ,
2022-06-03 17:17:30 +02:00
"babel-loader" : "^8.2.5" ,
2019-11-14 16:11:43 +01:00
"browserlist" : "^1.0.1" ,
2022-03-19 11:34:43 +01:00
"clean-webpack-plugin" : "^4.0.0" ,
2022-06-03 17:17:30 +02:00
"copy-webpack-plugin" : "^11.0.0" ,
2022-07-12 11:27:30 +02:00
"core-js" : "^3.23.4" ,
2022-03-19 11:34:43 +01:00
"csso" : "^5.0.3" ,
2022-07-12 11:27:30 +02:00
"eslint" : "^8.19.0" ,
2022-04-12 14:55:13 +02:00
"eslint-plugin-import" : "^2.26.0" ,
2022-03-19 11:34:43 +01:00
"eslint-plugin-jasmine" : "^4.1.3" ,
2022-06-03 17:17:30 +02:00
"husky" : "^8.0.1" ,
2022-06-22 19:41:49 +02:00
"jasmine" : "^4.2.1" ,
"karma" : "^6.4.0" ,
2022-03-19 11:34:43 +01:00
"karma-chrome-launcher" : "^3.1.1" ,
2020-06-10 22:16:10 +02:00
"karma-coverage-istanbul-reporter" : "^3.0.3" ,
2022-06-22 19:41:49 +02:00
"karma-jasmine" : "^5.1.0" ,
2020-08-29 14:33:08 +02:00
"karma-sourcemap-loader" : "^0.3.8" ,
2021-02-07 15:05:55 +01:00
"karma-webpack" : "^5.0.0" ,
2020-04-04 17:20:01 +02:00
"prepush-if-changed" : "^1.0.8" ,
2022-07-12 11:27:30 +02:00
"puppeteer" : "^15.3.2" ,
2021-08-30 16:57:31 +02:00
"regenerator-runtime" : "^0.13.9" ,
2022-06-22 19:41:49 +02:00
"stylelint" : "^14.9.1" ,
2022-06-10 08:51:08 +02:00
"stylelint-config-standard" : "^26.0.0" ,
2022-06-03 17:17:30 +02:00
"terser-webpack-plugin" : "^5.3.3" ,
"webpack" : "^5.73.0" ,
2022-06-22 19:41:49 +02:00
"webpack-cli" : "^4.10.0" ,
2021-08-30 16:57:31 +02:00
"webpack-merge" : "^5.8.0"
2019-11-14 16:11:43 +01:00
} ,
"dependencies" : {
2022-07-12 11:27:30 +02:00
"@babel/runtime" : "^7.18.6" ,
"@babel/runtime-corejs3" : "^7.18.6" ,
"caniuse-lite" : "^1.0.30001365" ,
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" ,
2022-04-12 14:55:13 +02:00
"ol" : "^6.14.1"
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" ,
2022-03-19 11:34:43 +01:00
"no-descending-specificity" : null ,
"color-function-notation" : "legacy" ,
"property-no-vendor-prefix" : null
2020-01-06 21:17:55 +01:00
}
} ,
2019-11-14 16:11:43 +01:00
"browserslist" : [
"defaults"
2021-08-31 20:20:33 +02:00
]
2019-11-14 16:11:43 +01:00
}