-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "fabric-client-node",
"version": "1.0.0",
"description": "A simple API that interacts with the Hyperledger Fabric blockchain using the Fabric SDK for Node.js",
"main": "server.ts",
"scripts": {
"start": "node src/server",
"dev": "ts-node-dev src/server",
"build": "tsc -p tsconfig.json",
"test": "jest --silent",
"docker": "docker build -f Dockerfile -t fabric-client-node:latest ."
},
"repository": {
"type": "git",
"url": "https://github.com/kehm/fabric-client-node.git"
},
"author": "kehm",
"license": "Apache-2.0",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/jest": "^27.0.3",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.4",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.4.5",
"supertest": "^6.1.6",
"ts-jest": "^27.1.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"fabric-ca-client": "^2.2.11",
"fabric-network": "^2.2.11",
"helmet": "^4.6.0",
"js-yaml": "^4.1.0"
}
}