-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1010 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
30
31
32
33
{
"name": "js-blockhain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"api": "NODE_PORT=8080 NODE_URL=http://localhost node ./api",
"api-watch": "NODE_PORT=8080 NODE_URL=http://localhost nodemon ./api",
"dev-nodes": "concurrently \"NODE_PORT=8080 NODE_URL=http://localhost nodemon ./api\" \"NODE_PORT=8081 NODE_URL=http://localhost nodemon ./api\"",
"test": "NODE_ENV=test nyc mocha --recursive '{,!(node_modules)/**/}*.test.js' --reporter spec --exit",
"test-watch": "nodemon --exec 'npm run test'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^4.3.4",
"concurrently": "^6.2.0",
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"prettier": "^2.3.1",
"sinon": "^11.1.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"sha.js": "^2.4.11",
"uuid": "^8.3.2"
}
}