Replace glicko2 and lowdb with glicko2-lite

This commit is contained in:
Maciej Pędzich 2023-06-08 17:48:49 +02:00
parent 382058e1c2
commit 0719efab93
2 changed files with 9 additions and 33 deletions

39
package-lock.json generated
View File

@ -9,8 +9,7 @@
"version": "0.1.0", "version": "0.1.0",
"dependencies": { "dependencies": {
"@mdi/font": "7.0.96", "@mdi/font": "7.0.96",
"glicko2": "^1.1.0", "glicko2-lite": "^3.2.0",
"lowdb": "^6.0.1",
"roboto-fontface": "*", "roboto-fontface": "*",
"vue": "^3.2.0", "vue": "^3.2.0",
"vue-router": "^4.0.0", "vue-router": "^4.0.0",
@ -1744,10 +1743,13 @@
"node": "^8.16.0 || ^10.6.0 || >=11.0.0" "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
} }
}, },
"node_modules/glicko2": { "node_modules/glicko2-lite": {
"version": "1.1.0", "version": "3.2.0",
"resolved": "https://registry.npmjs.org/glicko2/-/glicko2-1.1.0.tgz", "resolved": "https://registry.npmjs.org/glicko2-lite/-/glicko2-lite-3.2.0.tgz",
"integrity": "sha512-IJ79p2NOEU984fbGhdbStTY1yzZ144NLtFYJWoNpHrM/kmpP7iV9JyRkq29gPz9VcRXjSu5iAF1omgYFtrMzWA==" "integrity": "sha512-9D3/sbzmdVfDyFJPjPNPckCXF6SP5bkG389ZK7fUzwZi0JcELO7DuVpkcn/MjLbH8J0Ia4Zka/jbv86JT437YQ==",
"engines": {
"node": "14 || 16 || 18 || >=20"
}
}, },
"node_modules/glob": { "node_modules/glob": {
"version": "7.2.3", "version": "7.2.3",
@ -2005,20 +2007,6 @@
"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
"dev": true "dev": true
}, },
"node_modules/lowdb": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/lowdb/-/lowdb-6.0.1.tgz",
"integrity": "sha512-1ktuKYLlQzAWwl4/PQkIr8JzNXgcTM6rAhpXaQ6BR+VwI98Q8ZwMFhBOn9u0ldcW3K/WWzhYpS3xyGTshgVGzA==",
"dependencies": {
"steno": "^3.0.0"
},
"engines": {
"node": ">=16"
},
"funding": {
"url": "https://github.com/sponsors/typicode"
}
},
"node_modules/lru-cache": { "node_modules/lru-cache": {
"version": "6.0.0", "version": "6.0.0",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
@ -2583,17 +2571,6 @@
"node": ">=0.10.0" "node": ">=0.10.0"
} }
}, },
"node_modules/steno": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/steno/-/steno-3.0.0.tgz",
"integrity": "sha512-uZtn7Ht9yXLiYgOsmo8btj4+f7VxyYheMt8g6F1ANjyqByQXEE2Gygjgenp3otHH1TlHsS4JAaRGv5wJ1wvMNw==",
"engines": {
"node": ">=14.16"
},
"funding": {
"url": "https://github.com/sponsors/typicode"
}
},
"node_modules/strip-ansi": { "node_modules/strip-ansi": {
"version": "6.0.1", "version": "6.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",

View File

@ -11,8 +11,7 @@
}, },
"dependencies": { "dependencies": {
"@mdi/font": "7.0.96", "@mdi/font": "7.0.96",
"glicko2": "^1.1.0", "glicko2-lite": "^3.2.0",
"lowdb": "^6.0.1",
"roboto-fontface": "*", "roboto-fontface": "*",
"vue": "^3.2.0", "vue": "^3.2.0",
"vue-router": "^4.0.0", "vue-router": "^4.0.0",