-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "fabric-land-registry",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"build:watch": "tsc -w",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"pretest": "npm run lint",
"start": "node src/server.js"
},
"keywords": [],
"engines": {
"node": ">=18"
},
"engineStrict": true,
"author": "",
"license": "ISC",
"dependencies": {
"@grpc/grpc-js": "^1.9.11",
"@hyperledger/fabric-gateway": "^1.4.0",
"axios": "^1.6.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fabric-common": "^2.2.20",
"fs": "^0.0.1-security",
"json-stringify-deterministic": "^1.0.12",
"path": "^0.12.7",
"sort-keys-recursive": "^2.1.10",
"util": "^0.12.5"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/express": "^4.17.21",
"@types/node": "^18.18.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"typescript": "~5.2.2"
}
}