forked from benjaminW78/json-web-token-introduction
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 724 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 724 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
{
"name": "jwt-server",
"version": "1.0.0",
"description": "server used to simulate a json token service",
"main": "index.js",
"scripts": {
"start": "ENV_DEFINITION=development nodemon app/server/index.js",
"test": "echo \"Error: no test specified\" && exit 0"
},
"keywords": [
"jwt"
],
"author": "benjamin",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.0",
"colors": "^1.1.2",
"cookie-parser": "^1.4.1",
"express": "^4.13.4",
"jsonwebtoken": "^5.7.0",
"md5": "^2.1.0",
"moment": "^2.13.0",
"moment-timezone": "^0.5.3",
"nodemailer": "^2.3.2",
"pg": "^4.5.3",
"q": "^1.4.1"
},
"devDependencies": {
"nodemon": "^1.9.1"
}
}