-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 KB
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
36
{
"name": "ms-authentication",
"version": "1.0.0",
"description": "Microservice",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrunoSobralDEV/node-user-authentication-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BrunoSobralDEV/node-user-authentication-api/issues"
},
"homepage": "https://github.com/BrunoSobralDEV/node-user-authentication-api#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^17.0.2",
"@types/pg": "^8.6.3",
"express": "^4.17.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
},
"dependencies": {
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.1"
}
}