-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 874 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 874 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
40
41
{
"name": "node-jwt-auth",
"version": "1.0.0",
"engines": {
"node": "11.x"
},
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "mocha --exit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"JSON": "^1.0.0",
"bcrypt": "^3.0.5",
"bcryptjs": "^2.4.0",
"body-parser": "^1.15.2",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"jsonwebtoken": "^8.2.0",
"mongoose": "^5.4.17",
"morgan": "^1.9.1",
"parcelify": "^2.2.0",
"passport": "^0.3.2",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"validator": "^10.11.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"faker": "^3.1.0",
"mocha": "^4.1.0",
"should": "^13.2.3"
}
}