Authorization page done

This commit is contained in:
2022-04-07 20:57:54 -03:00
parent 540e57ce2a
commit bf4080e0bd
8 changed files with 149 additions and 3 deletions

View File

@@ -2,9 +2,10 @@
"name": "telegram-to-notion-website",
"version": "1.0.0",
"description": "Website for the Telegram to Notion Bot",
"main": "src/index.js",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.js"
"dev": "nodemon index.js",
"start": "node index.js"
},
"keywords": [
"telegram",
@@ -18,6 +19,9 @@
"nodemon": "^2.0.15"
},
"dependencies": {
"express": "^4.17.3"
"axios": "^0.26.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"hbs": "^4.2.0"
}
}