Added dependencies

This commit is contained in:
Philip 2021-09-03 12:24:56 +02:00
parent a8ba7d9483
commit 3a024885f0
2 changed files with 33 additions and 0 deletions

23
package-lock.json generated Normal file
View file

@ -0,0 +1,23 @@
{
"name": "VeganCheck",
"version": "1.2.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"barcode-reader": {
"version": "1.6.1",
"resolved": "https://registry.npmjs.org/barcode-reader/-/barcode-reader-1.6.1.tgz",
"integrity": "sha1-/7N8iEMFyj8UKeyXV3dDSZkDXwQ="
},
"jquery": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.0.tgz",
"integrity": "sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw=="
},
"pwa-install-prompt": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/pwa-install-prompt/-/pwa-install-prompt-1.1.1.tgz",
"integrity": "sha512-rZFSKYkdNgjSDXxJaCC5LbLF/lZZldHoQ2SAWIh7JsHUqNhMuDrnpepGG6me5wWNOHjdmxl+xsueSDTLvak3qA=="
}
}
}

10
package.json Normal file
View file

@ -0,0 +1,10 @@
{
"name": "VeganCheck",
"version": "1.2.0",
"description": "VeganCheck.me is a Progressive Web App, which scans EAN/UPC-Codes and tells you if a product is vegan or not using a javascript-only barcode-scanner and API by OpenFoodFacts.",
"dependencies": {
"barcode-reader": "^1.6.1",
"jquery": "^3.6.0",
"pwa-install-prompt": "^1.1.1"
}
}