-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start:build": "tsc -w",
"start:run": "nodemon build/server.js",
"start": "concurrently npm:start:*"
},
"devDependencies": {
"concurrently": "^4.1.1",
"nodemon": "^1.19.1"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.1",
"@types/cookie-session": "^2.0.37",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.2",
"@types/jsonwebtoken": "^8.3.5",
"@types/mongoose": "^5.5.12",
"@types/node": "^12.7.2",
"@types/nodemailer": "^6.2.2",
"@types/passport": "^1.0.0",
"@types/passport-jwt": "^3.0.3",
"@types/validator": "^12.0.1",
"bcrypt": "^3.0.7",
"body-parser": "^1.19.0",
"cookie-session": "^1.3.3",
"dotenv": "6.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.6.9",
"nodemailer": "^6.3.1",
"nodemailer-express-handlebars": "^3.1.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"validator": "^12.1.0",
"winston": "^3.2.1"
}
}