-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 917 Bytes
/
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
{
"name": "authentication_template",
"version": "1.0.0",
"description": "",
"main": "./server/app.js",
"scripts": {
"test": "jest --watchAll --verbose --env=node --runInBand --coverage"
},
"author": "Silvan Knecht",
"license": "ISC",
"dependencies": {
"async": "^2.6.1",
"bcryptjs": "^2.4.3",
"config": "^3.0.1",
"express": "^4.16.4",
"express-async-errors": "^3.1.1",
"express-promise-router": "^3.0.3",
"joi": "^14.3.1",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.4.9",
"passport": "^0.4.0",
"passport-facebook-token": "^3.3.0",
"passport-github-token": "^2.1.0",
"passport-google-plus-token": "^2.1.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"swagger-ui-express": "^4.0.2",
"winston": "^3.2.1",
"winston-mongodb": "^5.0.0"
},
"devDependencies": {
"jest": "^24.5.0",
"supertest": "^4.0.2"
}
}