Install dependencies

This commit is contained in:
Christian Wolf 2024-10-21 13:02:54 +02:00
parent 347e612092
commit 2782838276
3 changed files with 50 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/node_modules/

30
package-lock.json generated Normal file
View File

@ -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"
}
}
}
}

19
package.json Normal file
View File

@ -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"
}
}