login usuario

This commit is contained in:
arturo
2020-08-19 09:34:11 -05:00
parent 38eca663e0
commit b5aee47e60
7 changed files with 1010 additions and 13 deletions
+4 -1
View File
@@ -30,6 +30,7 @@
"log-symbols": "^4.0.0",
"multer": "^1.4.2",
"mysql": "^2.14.1",
"nodemon": "^2.0.4",
"papaparse": "^5.2.0",
"reflect-metadata": "^0.1.10",
"tsconfig-paths": "^3.9.0",
@@ -37,6 +38,8 @@
},
"scripts": {
"start": "ts-node src/index.ts",
"dev": "npx nodemon --exec ts-node -r tsconfig-paths/register src/index.ts"
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/index.ts",
"db:sync": "ts-node ./node_modules/.bin/typeorm schema:sync",
"db:drop": "ts-node ./node_modules/.bin/typeorm schema:drop"
}
}