-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1021 Bytes
/
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
{
"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 <hello@settlemint.com>",
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"start": "set -x && fabric-chaincode-node start",
"build": "tsc"
},
"devDependencies": {
"@types/node": "18.19.64",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.6.0",
"prettier": "3.3.3",
"ts-generator": "0.1.1",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"dependencies": {
"class-transformer": "0.5.1",
"fabric-contract-api": "2.5.7",
"fabric-shim": "2.5.7",
"json-stringify-deterministic": "1.0.12",
"sort-keys-recursive": "2.1.10"
}
}