-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathpackage.json
93 lines (93 loc) · 2.74 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "ulogger-server",
"version": "1.2.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.",
"main": "js/src/ulogger.js",
"scripts": {
"test": "karma start karma.conf.js",
"start": "webpack-dev-server --open --config webpack.dev.js",
"lint:css": "stylelint css/src/main.css",
"lint:js": "eslint js/src/*.js",
"build": "webpack --config webpack.prod.js",
"build:dev": "webpack --config webpack.dev.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/~/ulogger-server.git"
},
"author": "Bartek Fabiszewski",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.4",
"@jsdevtools/coverage-istanbul-loader": "3.0.5",
"babel-loader": "^9.1.3",
"browserlist": "^1.0.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.37.0",
"csso": "^5.0.5",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jasmine": "^4.1.3",
"husky": "^9.0.11",
"jasmine": "^5.1.0",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.1",
"prepush-if-changed": "^1.0.8",
"puppeteer": "^22.7.1",
"regenerator-runtime": "^0.14.1",
"stylelint": "^16.4.0",
"stylelint-config-standard": "^36.0.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@babel/runtime": "^7.24.4",
"@babel/runtime-corejs3": "^7.24.4",
"caniuse-lite": "^1.0.30001612",
"chartist": "^1.3.0",
"chartist-plugin-axistitle": "0.0.7",
"ol": "^9.1.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry",
"corejs": 3
}
]
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"corejs": 3
}
]
]
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"no-descending-specificity": null,
"color-function-notation": "legacy",
"property-no-vendor-prefix": null
}
},
"browserslist": [
"defaults"
]
}