-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 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
{
"name": "Kinto-storage-service",
"version": "0.1.0",
"description": "",
"main": "build/src/service.js",
"types": "build/src/service.d.ts",
"files": [
"build/src"
],
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"test": "jest",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "tsc",
"pretest": "npm run compile",
"posttest": "npm run lint",
"start": "tsc && node --unhandled-rejections=strict ./build/src/service.js"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.14",
"@types/express-fileupload": "^1.2.3",
"@types/jest": "^28.1.8",
"@types/node": "^14.18.23",
"@types/supertest": "^2.0.12",
"gts": "^3.1.0",
"jest": "^28.1.3",
"node": "^18.10.0",
"supertest": "^6.3.0",
"ts-jest": "^28.0.7",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"dependencies": {
"@grpc/grpc-js": "^1.7.1",
"@hyperledger/fabric-gateway": "^1.1.0",
"@tsconfig/node14": "^1.0.3",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-fileupload": "^1.4.0",
"fabric-ca-client": "^2.2.14",
"fabric-network": "^2.2.14",
"ipfs-core-types": "^0.11.1",
"ipfs-http-client": "56.0.3",
"it-all": "^1.0.6",
"libp2p": "^0.37.3",
"node-color-log": "^10.0.2",
"redis": "^4.5.1",
"redis-om": "^0.3.6"
}
}