Added the cron-parser dependency to the client

This commit is contained in:
Mathias Wagner
2022-08-31 01:11:34 +02:00
parent 213bbc94dc
commit bcdbde23ab
2 changed files with 37 additions and 3 deletions

View File

@@ -12,6 +12,7 @@
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@vitejs/plugin-react": "^2.0.1",
"cron-parser": "^4.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.54.6",
@@ -2305,6 +2306,17 @@
"semver": "bin/semver.js"
}
},
"node_modules/cron-parser": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/cron-parser/-/cron-parser-4.6.0.tgz",
"integrity": "sha512-guZNLMGUgg6z4+eGhmHGw7ft+v6OQeuHzd1gcLxCo9Yg/qoxmG3nindp2/uwGCLizEisf2H0ptqeVXeoCpP6FA==",
"dependencies": {
"luxon": "^3.0.1"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/crypto-random-string": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz",
@@ -3471,6 +3483,14 @@
"loose-envify": "cli.js"
}
},
"node_modules/luxon": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/luxon/-/luxon-3.0.3.tgz",
"integrity": "sha512-+EfHWnF+UT7GgTnq5zXg3ldnTKL2zdv7QJgsU5bjjpbH17E3qi/puMhQyJVYuCq+FRkogvB5WB6iVvUr+E4a7w==",
"engines": {
"node": ">=12"
}
},
"node_modules/magic-string": {
"version": "0.25.9",
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz",
@@ -6142,6 +6162,14 @@
}
}
},
"cron-parser": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/cron-parser/-/cron-parser-4.6.0.tgz",
"integrity": "sha512-guZNLMGUgg6z4+eGhmHGw7ft+v6OQeuHzd1gcLxCo9Yg/qoxmG3nindp2/uwGCLizEisf2H0ptqeVXeoCpP6FA==",
"requires": {
"luxon": "^3.0.1"
}
},
"crypto-random-string": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz",
@@ -6877,6 +6905,11 @@
"js-tokens": "^3.0.0 || ^4.0.0"
}
},
"luxon": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/luxon/-/luxon-3.0.3.tgz",
"integrity": "sha512-+EfHWnF+UT7GgTnq5zXg3ldnTKL2zdv7QJgsU5bjjpbH17E3qi/puMhQyJVYuCq+FRkogvB5WB6iVvUr+E4a7w=="
},
"magic-string": {
"version": "0.25.9",
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz",

View File

@@ -10,12 +10,13 @@
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@vitejs/plugin-react": "^2.0.1",
"cron-parser": "^4.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.54.6",
"vite-plugin-pwa": "^0.12.3",
"@vitejs/plugin-react": "^2.0.1",
"vite": "^3.0.9"
"vite": "^3.0.9",
"vite-plugin-pwa": "^0.12.3"
},
"devDependencies": {
"@types/react": "^18.0.18",