-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 988 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
34
35
36
37
{
"name": "currency-chain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/api/index",
"dev-peer": "cross-env GENERATE_PEER_PORT=true nodemon src/api/index",
"redis": "redis-server daemonize yes",
"test": "jest --verbose",
"coverage": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"test-w": "jest --watchAll"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "Ashok Dey <[email protected]> (http://ashokdey.in)",
"license": "MIT",
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^5.11.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.6.0",
"nodemon": "^1.18.9"
},
"dependencies": {
"elliptic": "^6.5.3",
"express": "^4.16.4",
"hex-to-binary": "^1.0.1",
"redis": "^2.8.0",
"request": "^2.88.0",
"uuid": "^3.3.2"
}
}