-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "login",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Mauro-Pereira/Login-System-using-Nodejs-and-JsonwebToken.git",
"author": "Mauro Pereira <mauropereira1096@gmail.com>",
"license": "MIT",
"scripts": {
"start_DB": "tsnd --transpile-only --respawn --ignore-watch node_modules src/infra/sequelize/DataBase.ts",
"start_Table": "tsnd --transpile-only --respawn --ignore-watch node_modules src/infra/sequelize/Model/UserModelSequelize.ts",
"start": "tsnd --transpile-only --respawn --ignore-watch node_modules src/server.ts",
"test": "jest"
},
"dependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.25",
"@types/sequelize": "^4.28.9",
"@types/typescript": "^2.0.0",
"@types/validator": "^13.1.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jest": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.2.5",
"sequelize": "^6.5.0",
"sequelize-typescript": "^2.0.0",
"ts-jest": "^26.5.4",
"typescript": "^4.1.3",
"uuidv4": "^6.2.6"
},
"devDependencies": {
"ts-node-dev": "^1.1.1"
}
}