Added gitignore and package.json

This commit is contained in:
Allan Cueff
2022-12-17 20:26:05 +01:00
parent 03c2e07fb5
commit 13d7dba343
2 changed files with 31 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
/.env
/package-lock.json

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "strava-free-year-in-sport",
"version": "1.0.0",
"description": "Strava \"Year in Sport\", but for free",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/allan-cff/strava-free-year-in-sport.git"
},
"keywords": [
"strava"
],
"author": "allan-cff",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/allan-cff/strava-free-year-in-sport/issues"
},
"homepage": "https://github.com/allan-cff/strava-free-year-in-sport#readme",
"dependencies": {
"axios": "^1.2.1",
"body-parser": "^1.20.1",
"dotenv": "^16.0.3",
"express": "^4.18.2"
}
}