setting up dotenv and stuff

This commit is contained in:
talksik
2022-04-01 11:46:08 -04:00
parent 8a1163dc3f
commit ce0fb7a885
9 changed files with 101 additions and 263 deletions
+4 -2
View File
@@ -7,15 +7,17 @@
"@nirvana/core": "*",
"axios": "^0.26.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"google-auth-library": "^7.14.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.4.1",
"socket.io": "^4.4.1"
},
"scripts": {
"dev": "NODE_ENV=development && nodemon",
"dev": "NODE_ENV=development nodemon",
"start": "ts-node index.ts",
"production": "NODE_ENV=production && nodemon"
"production": "NODE_ENV=production nodemon"
},
"devDependencies": {
"@types/express": "^4.17.13",