-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 878 Bytes
/
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
{
"name": "belay-chain-blockchain",
"version": "1.0.0",
"description": "blockchain to store rock gym belay certifications",
"main": "index.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon app.js",
"node1": "nodemon --watch src -e js app.js 3001 http://localhost:3001",
"node2": "nodemon --watch src -e js app.js 3002 http://localhost:3002",
"node3": "nodemon --watch src -e js app.js 3003 http://localhost:3003"
},
"author": "Kat Leight",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.1",
"nodemon": "^2.0.7",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"uuid": "^8.3.2"
}
}