-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
53 lines (53 loc) · 1.82 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
{
"name": "@prophouse/sdk",
"version": "1.0.28",
"description": "Useful tools for interacting with the Prop House protocol",
"author": "solimander",
"homepage": "https://prop.house",
"license": "GPL-3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist tsconfig.build.tsbuildinfo",
"build": "tsc -p tsconfig.build.json",
"prepare": "yarn build",
"test": "mocha -r ts-node/register \"test/**/*.test.ts\"",
"format": "prettier --write '{,*/**/}*.ts' '!dist/**'",
"codegen": "yarn codegen:evm && yarn codegen:starknet",
"codegen:evm": "graphql-codegen --config scripts/gql-codegen.evm.ts",
"codegen:starknet": "graphql-codegen --config scripts/gql-codegen.starknet.ts"
},
"dependencies": {
"@ethereumjs/block": "5.2.0",
"@ethereumjs/common": "4.3.0",
"@ethersproject/abi": "~5.7.0",
"@ethersproject/abstract-provider": "~5.7.0",
"@ethersproject/abstract-signer": "~5.7.0",
"@ethersproject/address": "~5.7.0",
"@ethersproject/bignumber": "~5.7.0",
"@ethersproject/bytes": "~5.7.0",
"@ethersproject/constants": "~5.7.0",
"@ethersproject/contracts": "~5.7.0",
"@ethersproject/keccak256": "~5.7.0",
"@ethersproject/providers": "~5.7.0",
"@ethersproject/solidity": "~5.7.0",
"@ethersproject/strings": "~5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@pinata/sdk": "^2.1.0",
"@prophouse/protocol": "1.0.12",
"bn.js": "^5.2.1",
"graphql": "^16.5.0",
"graphql-request": "5.0.0",
"merkletreejs": "^0.3.11",
"micro-starknet": "^0.2.3",
"randombytes": "^2.1.0",
"starknet": "5.19.5",
"time-ts": "^0.1.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^3.2.1",
"@graphql-codegen/client-preset": "^2.1.0",
"@types/bn.js": "^5.1.1",
"@types/randombytes": "^2.0.0"
}
}