-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.52 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "smpc-coordinator",
"version": "1.0.0",
"description": "Coordinator SMPC framework",
"main": "server.js",
"scripts": {
"start": "nodemon --watch . --watch server.js --ignore ./smpc-db",
"serve": "node server.js",
"lint": "standard"
},
"engines": {
"node": ">=8.9.0"
},
"author": {
"name": "Christos Nasikas",
"email": "[email protected]",
"url": "https://christosnasikas.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/Athena-MHMD/smpc-coordinator.git"
},
"homepage": "https://github.com/Athena-MHMD/smpc-coordinator",
"bugs": "https://github.com/Athena-MHMD/smpc-coordinator/issues",
"license": "MIT",
"standard": {
"ignore": []
},
"dependencies": {
"axios": "^0.19.0",
"bee-queue": "^1.2.2",
"body-parser": "^1.18.3",
"connect-redis": "^3.4.1",
"content-disposition": "^0.5.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-session": "^1.16.1",
"fabric-ca-client": "1.4.1",
"fabric-client": "1.4.1",
"helmet": "^3.15.0",
"jsonwebtoken": "^8.5.1",
"level": "^4.0.0",
"lodash": "^4.17.11",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"redis": "^2.8.0",
"standard": "^12.0.1",
"uuid": "^3.3.2",
"winston": "^3.2.1",
"ws": "^6.2.1"
},
"devDependencies": {
"nodemon": "^1.18.9",
"run.env": "^1.1.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
}
}