-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 989 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 989 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
34
35
36
37
38
39
{
"name": "auth",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "concurrently \"tsc --watch\" \"nodemon ./dist/index.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.2",
"@types/hapi__joi": "^16.0.6",
"@types/jsonwebtoken": "^8.3.5",
"@types/passport": "^1.0.2",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/pg": "^7.11.2",
"@types/sequelize": "^4.28.8",
"concurrently": "^5.0.1",
"nodemon": "^2.0.2",
"typescript": "^3.7.3"
},
"dependencies": {
"@hapi/joi": "^16.1.8",
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"express-promise-router": "^3.0.3",
"jsonwebtoken": "^8.5.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.14.0",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.3"
}
}