-
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",
"version": "1.0.0",
"description": "An empty Fabric chaincode with typescript project",
"main": "./index.js",
"typings": "./index.d.ts",
"author": "SettleMint <[email protected]>",
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"start": "set -x && fabric-chaincode-node start",
"build": "tsc"
},
"devDependencies": {
"@types/node": "22.13.17",
"@typescript-eslint/eslint-plugin": "8.29.0",
"@typescript-eslint/parser": "8.29.0",
"eslint": "9.23.0",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "7.2.1",
"prettier": "3.5.3",
"ts-generator": "0.1.1",
"ts-node": "10.9.2",
"typescript": "5.8.2"
},
"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"
]
}