forked from olegabu/fabric-starter-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "fabric-starter-rest",
"version": "1.0.0",
"description": "rest api server and client for hyperledger fabric built with nodejs sdk",
"main": "fabric-starter-client.js",
"scripts": {
"test": "DISCOVER_AS_LOCALHOST=true mocha",
"dev": "./start-dev.sh",
"start": "node app.js"
},
"repository": "https://github.com/olegabu/fabric-starter-rest",
"author": "Oleg Abdrashitov <[email protected]>",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"chmod-plus": "0.0.3",
"cors": "^2.8.5",
"enumify": "^1.0.4",
"envsub": "^3.1.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"fabric-ca-client": "^1.4.4",
"fabric-client": "^1.4.4",
"glob": "^7.1.4",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.13",
"log4js": "^3.0.6",
"multer": "^1.4.1",
"npm": "^6.10.0",
"serve-favicon": "^2.5.0",
"serve-index": "^1.9.1",
"shelljs": "^0.8.3",
"socket.io": "^2.2.0",
"unzipper": "^0.10.1",
"url-parse-lax": "^3.0.0",
"x509": "^0.3.4"
},
"devDependencies": {
"express-swagger-generator": "^1.1.15",
"fs-extra": "^7.0.1",
"mocha": "^5.2.0",
"nodemon": "^1.19.1",
"randomstring": "^1.1.5"
},
"nodemonConfig": {
"ignore": [
"./upload",
"./crypto-config",
"msp"
]
}
}