-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.37 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@zero-tech/zdao-sdk",
"version": "0.16.0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/",
"src/"
],
"scripts": {
"build": "tsc --build --verbose ./tsconfig.build.json",
"lint": "eslint --fix src",
"format": "prettier --write ./src/**/*.ts ./test/**/*.test.ts ./src/**/*.json",
"prepublish": "yarn build",
"test": "mocha -r ts-node/register 'test/**/*.test.ts' --exit --timeout 150000",
"runtime": "ts-node ./test/runtime/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zer0-os/zdao-sdk.git"
},
"keywords": [],
"author": "zero-tech",
"license": "MIT",
"bugs": {
"url": "https://github.com/zer0-os/zdao-sdk/issues"
},
"homepage": "https://github.com/zer0-os/zdao-sdk#readme",
"dependencies": {
"@ethersproject/abstract-signer": "^5.4.1",
"@ethersproject/address": "^5.4.0",
"@ethersproject/bignumber": "^5.4.2",
"@ethersproject/contracts": "^5.4.1",
"@ethersproject/providers": "^5.4.5",
"@ethersproject/wallet": "^5.4.0",
"@safe-global/safe-gateway-typescript-sdk": "3.7.0",
"@snapshot-labs/snapshot.js": "0.4.58",
"@types/lodash": "4.14.180",
"@types/shortid": "0.0.29",
"cross-fetch": "3.1.5",
"date-fns": "2.28.0",
"dotenv": "16.0.0",
"graphql": "16.3.0",
"graphql-request": "4.1.0",
"graphql-tag": "2.12.6",
"lodash": "4.17.21",
"shortid": "2.2.16",
"typescript": "4.6.2"
},
"peerDependencies": {
"@zero-tech/zauction-sdk": ">=0.2.11",
"@zero-tech/zns-sdk": ">=0.8.13",
"ethers": ">=5.4.6"
},
"devDependencies": {
"@types/chai": "4.3.0",
"@types/chai-as-promised": "7.1.5",
"@types/mocha": "9.1.0",
"@types/node": "17.0.21",
"@types/node-fetch": "2.6.1",
"@typescript-eslint/eslint-plugin": "5.15.0",
"@typescript-eslint/parser": "5.15.0",
"@zero-tech/zauction-sdk": "^0.2.11",
"@zero-tech/zns-sdk": "^0.8.17",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"env-var": "7.3.0",
"eslint": "8.11.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"ethers": "^5.4.6",
"mocha": "9.2.2",
"node-fetch": "3.2.3",
"prettier": "2.5.1",
"ts-node": "10.7.0",
"xhr2": "0.2.1"
}
}