From 27828382769487aaab9ebca1f8f579a9d2ccdf2f Mon Sep 17 00:00:00 2001 From: Christian Wolf Date: Mon, 21 Oct 2024 13:02:54 +0200 Subject: [PATCH] Install dependencies --- .gitignore | 1 + package-lock.json | 30 ++++++++++++++++++++++++++++++ package.json | 19 +++++++++++++++++++ 3 files changed, 50 insertions(+) create mode 100644 .gitignore create mode 100644 package-lock.json create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2ccbe46 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/node_modules/ diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..b45ccd0 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,30 @@ +{ + "name": "gallery", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "gallery", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "jquery": "^3.7.1", + "nanogallery2": "^3.0.5" + } + }, + "node_modules/jquery": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.7.1.tgz", + "integrity": "sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==" + }, + "node_modules/nanogallery2": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/nanogallery2/-/nanogallery2-3.0.5.tgz", + "integrity": "sha512-Oa5EecMzUQGuRuh6LTc+xKBy5K+1WHXKA0o5PbqGm25rkuswtnE/QtN4RmTLBGSk5eYOTzWdkmm6RDH8+90vEg==", + "dependencies": { + "jquery": ">=1.12.4" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..9ce476f --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "gallery", + "version": "1.0.0", + "description": "## Features", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://git.christian-wolf.click/tsc-vfl/gallery" + }, + "author": "Christian Wolf", + "license": "ISC", + "dependencies": { + "jquery": "^3.7.1", + "nanogallery2": "^3.0.5" + } +}