-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "@settlemint/chaincode-typescript-empty-pdc",
"version": "1.0.0",
"description": "An empty PDC Fabric chaincode with typescript project",
"main": "./index.js",
"typings": "./index.d.ts",
"author": "SettleMint <hello@settlemint.com>",
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"start": "set -x && fabric-chaincode-node start",
"build": "tsc"
},
"devDependencies": {
"@types/node": "22.13.1",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"eslint": "9.20.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "7.2.1",
"prettier": "3.5.0",
"ts-generator": "0.1.1",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"dependencies": {
"class-transformer": "0.5.1",
"fabric-contract-api": "2.5.8",
"fabric-shim": "2.5.8",
"json-stringify-deterministic": "1.0.12",
"sort-keys-recursive": "2.1.10"
},
"trustedDependencies": [
"protobufjs"
]
}