-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 811 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 811 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
29
30
31
32
33
{
"scripts": {
"dev": "nodemon /src/server.ts",
"build": "tsc --project ./"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.6.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^15.0.2",
"@types/pg": "^7.14.11",
"dotenv": "^9.0.2",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"name": "auth-node",
"version": "1.0.0",
"main": "src/index.ts",
"keywords": [],
"author": "Gustavo Henrique",
"license": "UNLICENSED",
"description": "An simple authentication app built with node.js and typescript"
}