-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 778 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 778 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
{
"name": "simchainapi",
"version": "1.0.0",
"description": "API for Blockchain Simulator",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js",
"db": "brew services start mongodb"
},
"keywords": [
"RESTful",
"API",
"Simulator",
"Tutorial"
],
"author": "Jeanseok Choi",
"license": "ISC",
"devDependencies": {
"nodemon": "^1.17.5"
},
"dependencies": {
"cookie-parser": "~1.4.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.2.2",
"mongoose": "^5.1.4",
"morgan": "^1.9.0",
"npm": "^5.10.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"serve-favicon": "~2.2.0"
}
}