mirror of
https://github.com/Findus23/RainbowRoad.git
synced 2024-09-08 03:13:51 +02:00
update dependencies
This commit is contained in:
parent
8a9da97c30
commit
d55bd40b3e
4 changed files with 601 additions and 273 deletions
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
"extends": "ts-node/node16/tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true
|
||||
|
|
861
package-lock.json
generated
861
package-lock.json
generated
File diff suppressed because it is too large
Load diff
10
package.json
10
package.json
|
@ -4,9 +4,9 @@
|
|||
"description": "",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"fetch": "cd commands && ts-node fetch.ts",
|
||||
"stats": "cd commands && ts-node stats.ts",
|
||||
"archive": "cd commands && ts-node archive_sources.ts",
|
||||
"fetch": "cd commands && tsx fetch.ts",
|
||||
"stats": "cd commands && tsx stats.ts",
|
||||
"archive": "cd commands && tsx archive_sources.ts",
|
||||
"dev": "vite",
|
||||
"build": "tsc --skipLibCheck && vite build",
|
||||
"preview": "vite preview",
|
||||
|
@ -16,6 +16,7 @@
|
|||
"@types/micromodal": "^0.3.3",
|
||||
"@types/node": "^20.5.0",
|
||||
"sass": "^1.54.4",
|
||||
"tsx": "^4.7.2",
|
||||
"typescript": "^5.0.4",
|
||||
"vite": "^5.0.0"
|
||||
},
|
||||
|
@ -28,8 +29,7 @@
|
|||
"micromodal": "^0.4.10",
|
||||
"navigo": "^8.11.1",
|
||||
"node-fetch": "^3.2.10",
|
||||
"ol": "^8.0.0",
|
||||
"ts-node": "^10.9.1"
|
||||
"ol": "^9.0.0"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
|
|
|
@ -19,7 +19,7 @@ router.hooks({
|
|||
if (matomo) {
|
||||
matomo.customURL = locationAlias.protocol + '//' +
|
||||
locationAlias.hostname + "/" + m.url
|
||||
matomo?.trackPageview()
|
||||
matomo.trackPageview()
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue