forked from cornflourblue/node-jwt-authentication-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 655 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 655 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
{
"name": "node-jwt-authentication-api",
"version": "1.0.0",
"description": "NodeJS JWT Authentication API",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cornflourblue/node-jwt-authentication-api.git"
},
"scripts": {
"start": "node ./server.js",
"start:dev": "nodemon ./server.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^5.3.3",
"jsonwebtoken": "^8.5.1",
"rootpath": "^0.1.2"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}