-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.97 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
63
64
65
66
67
68
69
70
71
72
{
"name": "conun-blockchain-middleware-api-3.0",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "export NODE_ENV=test && export PORT=4444 && mocha --reporter spec 'tests/**/*.test.js' --timeout 10000",
"start": "node app.js",
"start:dev": "export NODE_ENV=development && node app.js",
"worker": "node ./service/app.worker.js",
"web3-test": "node ./test/integration/con.swap.web3.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fidm/x509": "^1.2.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"config": "^3.3.3",
"conun-dids": "0.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"elliptic": "^6.5.4",
"ethereumjs-tx": "^2.1.2",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-bearer-token": "^2.4.0",
"express-jwt": "^7.7.5",
"fabric-ca-client": "^2.1.0",
"fabric-client": "^1.4.8",
"fabric-network": "^2.1.0",
"http": "0.0.1-security",
"joi": "^17.3.0",
"jose": "^4.8.1",
"js-sha3": "^0.8.0",
"js-yaml": "^3.13.1",
"jsonwebtoken": "^8.5.1",
"keccak": "^3.0.1",
"key-did-provider-ed25519": "^1.1.0",
"key-did-resolver": "^1.4.4",
"lodash": "^4.17.20",
"log4js": "^6.3.0",
"mocha": "^10.0.0",
"mongoose": "^5.10.10",
"multiformats": "^9.6.5",
"node-rsa": "^1.1.1",
"typescript": "^4.7.4",
"uint8arrays": "^3.0.0",
"uuid": "^8.3.2",
"web3": "^1.3.4",
"winston": "^3.3.3",
"winston-mongodb": "^5.0.5",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"csv-stringify": "^5.5.3",
"csv-writer": "^1.6.0",
"jest": "^26.6.1",
"nodemon": "^2.0.13",
"supertest": "^6.2.3",
"swagger-jsdoc": "^6.0.1",
"swagger-ui-express": "^4.4.0"
},
"workspaces": {
"packages": [
"packages/**/*"
]
}
}