-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 775 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 775 Bytes
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
{
"name": "ms-authentication",
"version": "1.0.0",
"description": "Microservice created in DIO live code",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./",
"build": "tsc -p .",
"dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules --no-notify src/index.ts"
},
"author": "Ronaldo Rugieri",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.9.6",
"@types/pg": "^8.6.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
},
"dependencies": {
"express": "^4.19.2",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^9.0.0",
"pg": "^8.7.1"
}
}