-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.76 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
{
"name": "@zero-tech/zsale-sdk",
"version": "0.2.2",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/zer0-os/zSale-SDK.git",
"author": "zero-tech",
"license": "MIT",
"files": [
"lib/"
],
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"build": "tsc --build --verbose ./tsconfig.build.json",
"lint": "eslint --fix src",
"style": "prettier --write ./src/**/*.ts",
"test": "mocha -r ts-node/register 'test/**/*.test.ts' --exit --ignore 'test/archive/*' --timeout 200000",
"typechain": "typechain --target ethers-v5 --out-dir src/contracts/types/ \"abi/**/*.json\"",
"prepublish": "yarn build"
},
"devDependencies": {
"@typechain/ethers-v5": "7.0.1",
"@types/chai": "4.2.21",
"@types/chai-as-promised": "7.1.4",
"@types/mocha": "9.0.0",
"@types/node": "16.7.13",
"@types/sinon": "10.0.2",
"@typescript-eslint/eslint-plugin": "4.31.0",
"@typescript-eslint/parser": "4.31.0",
"@zero-tech/zauction-sdk": "0.0.33",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"eslint-plugin-prettier": "4.0.0",
"ethers": "5.4.7",
"mocha": "9.1.1",
"nock": "13.3.0",
"prettier": "2.3.2",
"sinon": "11.1.2",
"ts-mock-imports": "1.3.8",
"ts-node": "10.2.1",
"typechain": "5.1.2",
"typescript": "4.4.2"
},
"dependencies": {
"@apollo/client": "3.4.10",
"@ethersproject/abi": "5.4.1",
"@ethersproject/bytes": "5.4.0",
"@ethersproject/providers": "5.4.5",
"@semantic-release/git": "^10.0.1",
"cross-fetch": "3.1.4",
"graphql": "15.5.3",
"semantic-release": "^20.1.1"
},
"peerDependencies": {
"@zero-tech/zauction-sdk": ">=0.0.33",
"ethers": "^5.4.6"
}
}