Browse Source

:arrow_up: update dependency

Song 4 years ago
parent
commit
6cdaa69ca2
2 changed files with 6 additions and 3 deletions
  1. 2 1
      .gitignore
  2. 4 2
      package.json

+ 2 - 1
.gitignore

@@ -1,4 +1,5 @@
 .idea
 node_modules
 package-lock.json
-.env
+.env
+*.db

+ 4 - 2
package.json

@@ -3,10 +3,11 @@
   "version": "0.0.0",
   "private": true,
   "scripts": {
-    "start": "node ./app.js"
+    "start": "node ./app.js",
+    "devStart": "nodemon ./app.js"
   },
   "dependencies": {
-    "axios": "^0.20.0",
+    "axios": "^0.21.1",
     "cookie-parser": "~1.4.4",
     "debug": "~2.6.9",
     "dotenv": "^8.2.0",
@@ -15,6 +16,7 @@
     "morgan": "~1.9.1"
   },
   "devDependencies": {
+    "nodemon": "^2.0.6",
     "prettier": "^2.1.1"
   }
 }