Initial commit

This commit is contained in:
Daniel Kluge 2022-05-05 23:34:05 +02:00
commit 41c22ec04d
4 changed files with 1251 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
node_modules
secrets.*

0
index.js Normal file
View File

1224
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

25
package.json Normal file
View File

@ -0,0 +1,25 @@
{
"name": "google-photo-album-sync",
"version": "1.0.0",
"description": "Syncs a google photo album with a harddrive",
"main": "index.js",
"type": "module",
"scripts": {
"server": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"photos",
"sync",
"google",
"cloud"
],
"author": "Daniel Kluge",
"license": "GPL-3.0",
"dependencies": {
"body-parser": "^1.20.0",
"express": "^4.18.1",
"node-fetch": "^3.2.4",
"open": "^8.4.0"
}
}