-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 918 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 918 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
{
"author": "Chris Gutwin <24538491+cgutwin@users.noreply.github.com> (https://cgutwin.ca)",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1"
},
"description": "An example of how to use JWT with an Express API server.",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"dotenv": "^8.0.0",
"nodemon": "^1.19.0"
},
"engines": {
"node": ">= 10.0.0"
},
"keywords": [
"jsonwebtoken",
"jwt",
"express",
"api",
"authentication"
],
"license": "MIT",
"main": "lib/index.js",
"name": "jwt-express-api-example",
"private": true,
"repository": "github:cgutwin/jwt-express-example",
"scripts": {
"build": "babel lib -d dist",
"prestart": "pnpm run build",
"start": "nodemon -V -r dotenv/config dist/index.js"
},
"version": "1.0.0"
}