-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 KB
/
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
38
39
40
41
42
43
{
"name": "cryptochain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --watchAll",
"start": "node index.js ",
"dev": "npm run start-redis && nodemon index.js",
"dev-peer": "cross-env GENERATE_PEER_PORT='true' nodemon index.js",
"start-redis": "redis-server --daemonize yes"
},
"standard": {
"env": [
"jest"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^23.6.0",
"node-ipc": "^9.1.1",
"nodemon": "^1.18.4",
"standard": "^14.3.0"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"hex-to-binary": "^1.0.1",
"pubnub": "^4.21.6",
"redis": "^2.8.0",
"request": "^2.88.0"
}
}