-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 904 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": "txintegration",
"version": "0.2.0",
"description": "Testing integration of RPC Sidecar and TxWrapper.",
"main": "src/index.ts",
"author": "joepetrowski <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=14"
},
"scripts": {
"start": "ts-node src/index.ts",
"sign": "./node_modules/ts-node/dist/bin.js src/sign.ts",
"build": "substrate-exec-rimraf lib/ && tsc -p tsconfig.build.json",
"lint": "tsc --noEmit && eslint . --ext ts"
},
"dependencies": {
"@polkadot/api": "10.11.2",
"@polkadot/util-crypto": "12.6.2",
"@substrate/txwrapper-polkadot": "7.2.0",
"axios": "^1.1.2",
"node-fetch": "^3.2.10",
"ts-node": "^10.9.1",
"typescript": "4.9.4"
},
"devDependencies": {
"@substrate/dev": "^0.6.5",
"readline": "^1.3.0"
},
"resolutions": {
"@polkadot/api": "10.11.2",
"typescript": "4.9.4"
}
}