-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
51 lines (51 loc) · 1.29 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
45
46
47
48
49
50
51
{
"name": "auth-jwt",
"version": "2.1.0",
"description": "A demo to learn JWT by reverse engineering",
"keywords": [
"jwt",
"token",
"jsonwebtoken",
"authentication",
"rfc-7519",
"signature",
"rsa",
"learn-by-doing",
"express",
"node authentication"
],
"main": "app.js",
"author": {
"name": "Pradeep Sharma",
"url": "https://github.com/gitcommitshow"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gitcommitshow/auth-jwt"
},
"bugs": "https://github.com/gitcommitshow/auth-jwt/issues",
"homepage": "https://auth-jwt--gitcommitshow.repl.co",
"private": false,
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "./node_modules/.bin/jsdoc -d docs -r services/"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2"
},
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"jsdoc": "^3.6.10"
}
}