This repository has been archived by the owner on Nov 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@setheum.js/eth-rpc-adaptor",
"version": "2.0.0",
"main": "lib/index.js",
"license": "MIT",
"author": "Setheum JS Developers <[email protected]>",
"scripts": {
"build": "heft build --clean",
"build:watch": "heft build",
"watch": "rush build:watch --to @setheum.js/eth-rpc-adaptor",
"lint": "tsc --noEmit && eslint \"**/*.ts\"",
"test": "mocha **/*.test.ts --ignore **/e2e/**",
"test:dev": "mocha **/*.test.ts --watch --watch-files **/*.test.ts",
"start": "ts-node src/index",
"dev": "nodemon --watch \"*\" --ext \"js,ts,json\" --ignore \"src/**/*.spec.ts\" --exec \"ts-node src/index.ts\" | pino-pretty"
},
"dependencies": {
"@setheum.js/eth-providers": "workspace:*",
"@polkadot/api": "~6.9.2",
"@polkadot/api-derive": "~6.9.2",
"@polkadot/types": "~6.9.2",
"@polkadot/util-crypto": "~7.9.2",
"@polkadot/util": "~7.9.2",
"ethers": "~5.4.7",
"@ethersproject/bignumber": "~5.4.0",
"@ethersproject/bytes": "~5.4.0",
"@ethersproject/abstract-provider": "~5.4.0",
"@ethersproject/properties": "~5.4.0",
"@ethersproject/transactions": "~5.4.0",
"@setheum.js/api": "3.3.1",
"body-parser": "~1.19.0",
"connect": "~3.7.0",
"cors": "~2.8.5",
"dotenv": "~10.0.0",
"node-ipc": "~10.1.0",
"pino": "~7.0.0-rc.3",
"ws": "~8.2.2",
"@setheum.js/types": "3.3.1",
"@ethersproject/logger": "~5.4.0",
"axios": "~0.24.0",
"@ethersproject/abstract-signer": "~5.4.0",
"@ethersproject/address": "~5.4.0",
"@ethersproject/wallet": "~5.5.0"
},
"devDependencies": {
"@types/chai": "~4.2.22",
"@types/mocha": "~9.0.0",
"@types/body-parser": "~1.19.1",
"@types/connect": "~3.4.35",
"@types/cors": "~2.8.12",
"@types/node": "~16.10.1",
"@types/node-ipc": "~9.1.5",
"@types/ws": "~8.2.0",
"@rushstack/eslint-config": "~2.4.2",
"eslint": "~7.32.0",
"nodemon": "2.0.12",
"pino-pretty": "~7.0.1",
"ts-node": "~10.3.0",
"typescript": "~4.4.4",
"@rushstack/heft": "~0.41.6",
"mocha": "~9.1.3",
"chai": "~4.3.4",
"@ethersproject/wallet": "~5.5.0"
}
}