forked from celo-org/celo-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.17 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
66
67
68
69
70
{
"name": "@celo/contractkit",
"version": "5.0.4",
"description": "Celo's ContractKit to interact with Celo network",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"sideEffects": false,
"author": "Celo",
"license": "Apache-2.0",
"homepage": "https://docs.celo.org/developer-guide/contractkit",
"repository": "https://github.com/celo-org/celo-monorepo/tree/master/packages/sdk/contractkit",
"keywords": [
"celo",
"blockchain",
"contractkit"
],
"scripts": {
"build:ts": "tsc -b .",
"build:gen": "yarn --cwd ../../protocol ts-node ./scripts/build.ts --web3Types ../sdk/contractkit/src/generated",
"build": "yarn build:gen && yarn build:ts",
"build:releasetag": "BUILD_DIR=./build/$RELEASE_TAG yarn build",
"clean": "tsc -b . --clean",
"clean:all": "yarn clean && rm -rf src/generated",
"prepublishOnly": "yarn build",
"docs": "typedoc",
"test:reset": "yarn --cwd ../../protocol devchain generate-tar .tmp/devchain.tar.gz --migration_override ../../dev-utils/src/migration-override.json --upto 27",
"test:livechain": "yarn --cwd ../../protocol devchain run-tar .tmp/devchain.tar.gz",
"test": "jest --runInBand --forceExit",
"lint": "tslint -c tslint.json --project ."
},
"dependencies": {
"@celo/base": "5.0.4",
"@celo/connect": "5.0.4",
"@celo/utils": "5.0.4",
"@celo/wallet-local": "5.0.4",
"@types/bn.js": "^5.1.0",
"@types/debug": "^4.1.5",
"bignumber.js": "^9.0.0",
"cross-fetch": "3.0.6",
"debug": "^4.1.1",
"fp-ts": "2.1.1",
"io-ts": "2.0.1",
"semver": "^7.3.5",
"web3": "1.10.0",
"web3-core-helpers": "1.10.0"
},
"devDependencies": {
"@celo/phone-utils": "^5.0.4",
"@celo/dev-utils": "0.0.1",
"@celo/protocol": "1.0.0",
"@types/debug": "^4.1.5",
"fetch-mock": "9.10.4",
"ganache": "npm:@celo/[email protected]",
"jest": "^29.0.2",
"bn.js": "^5.1.0",
"ts-node": "8.3.0",
"typedoc": "^0.19.2",
"typedoc-plugin-markdown": "^2.2.16",
"xhr2-cookies": "1.1.0"
},
"resolutions": {
"**/elliptic": "^6.5.4"
},
"engines": {
"node": ">=8.14.2"
},
"browser": {
"child_process": false
}
}