-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.5 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
{
"name": "@0xmetropolis/metro-sdk",
"version": "0.0.0-semantically-released",
"description": "",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"format": "cod-scripts format",
"lint": "cod-scripts lint",
"compile": "tsc --build .",
"test": "jest",
"docs": "typedoc src",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xmetropolis/metro-sdk.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/0xmetropolis/metro-sdk/issues"
},
"homepage": "https://github.com/0xmetropolis/metro-sdk#readme",
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"babel-jest": "^27.4.6",
"cod-scripts": "^10.0.0",
"husky": "^7.0.0",
"jest": "^27.4.7",
"ts-node": "^10.7.0",
"typedoc": "^0.22.15"
},
"dependencies": {
"@0xsequence/multicall": "^0.40.5",
"@ensdomains/ensjs": "^2.0.1",
"@gnosis.pm/safe-deployments": "^1.10.0",
"@orcaprotocol/contracts": "^5.11.0",
"@safe-global/safe-core-sdk": "^3.2.2",
"@safe-global/safe-ethers-lib": "^1.8.0",
"axios": "^0.25.0",
"ethers": "^5.5.4",
"typescript": "^4.6.4"
},
"eslintConfig": {
"extends": [
"./node_modules/cod-scripts/eslint.js"
],
"rules": {
"react/react-in-jsx-scope": "off",
"react/require-default-props": "off"
}
}
}