-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.49 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
{
"name": "web3methods",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"babel": "node_modules/.bin/babel packages --out-dir lib --extensions '.ts' ",
"start-account": "ts-node packages/web3-account.ts",
"start-import": "ts-node packages/web3-import.ts",
"start-balance": "ts-node packages/web3-balance.ts",
"start-transactions": "ts-node packages/web3-transactions.ts",
"start-network": "ts-node provider/web3Provider.ts",
"start-tokens": "ts-node packages/web3-tokens.ts",
"start-nft": "ts-node packages/web3-nft.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/crypto-js": "^4.1.0",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"axios": "^0.26.0",
"bip39": "^3.0.4",
"crypto-js": "4.0.0",
"ethereumjs-wallet": "^1.0.2",
"ethers": "^5.5.4",
"graphql": "^16.3.0",
"graphql-request": "^4.0.0",
"lodash": "^4.17.21",
"ts-node": "^10.4.0",
"web3": "^1.7.0",
"web3-utils": "^1.7.0"
}
}