-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
36
37
38
39
40
41
42
43
44
{
"name": "restapi-jwt-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "concurrently \"tsc -w\" \"nodemon dist/index.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/victorgmp/restapi-jwt-ts.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/victorgmp/restapi-jwt-ts/issues"
},
"homepage": "https://github.com/victorgmp/restapi-jwt-ts#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.1",
"@types/hapi__joi": "^16.0.2",
"@types/jsonwebtoken": "^8.3.5",
"@types/mongoose": "^5.5.23",
"@types/morgan": "^1.7.37",
"concurrently": "^5.0.0",
"nodemon": "^1.19.4",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.6.4"
},
"dependencies": {
"@hapi/joi": "^16.1.7",
"@types/dotenv": "^8.2.0",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.7",
"morgan": "^1.9.1"
}
}