-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 909 Bytes
/
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
{
"name": "ms-autenticacao",
"version": "1.0.0",
"description": "Microservico de autenticacao",
"main": "index.js",
"scripts": {
"test": "jest --collect-coverage",
"build": "tsc -p .",
"start": "node ./dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules --no-notify src/index.ts"
},
"author": "JNCJcoder",
"license": "ISC",
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.2",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^17.0.0",
"@types/pg": "^8.6.2",
"@types/supertest": "^2.0.11",
"jest": "^27.4.5",
"supertest": "^6.1.6",
"ts-jest": "^27.1.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
}
}