-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.32 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@deusfinance/synchronizer-sdk",
"license": "MIT",
"version": "2.4.1",
"description": "An SDK to interact with the DEUS Finance Synchronizer V2.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"module": "dist/synchronizer-sdk.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/deusfinance/synchronizer-sdk.git"
},
"bugs": {
"url": "https://github.com/deusfinance/synchronizer-sdk/issues"
},
"homepage": "https://github.com/deusfinance/synchronizer-sdk#readme",
"keywords": [
"deus",
"synchronizer",
"sdk",
"defi"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdx build && npm run yalc",
"test": "tsdx test --runInBand",
"lint": "tsdx lint src --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"yalc": "yalc push"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@ethersproject/address": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/contracts": "^5.4.1",
"@ethersproject/providers": "^5.5.3",
"@sushiswap/core-sdk": "^1.0.0-canary.34",
"axios": "^0.26.0",
"bignumber.js": "^9.0.2",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"redux": "^4.1.2",
"uuid": "^8.3.2"
},
"peerDependencies": {
"@reduxjs/toolkit": "^1.x",
"react": "^17.x",
"react-redux": "^7.x"
},
"devDependencies": {
"@reduxjs/toolkit": "^1.8.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^3.4.1",
"@types/jest": "^26.0.7",
"@types/lodash": "^4.14.178",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"@types/uuid": "^8.3.4",
"eslint-plugin-prettier": "^3.4.1",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"tsdx": "^0.14.1",
"typescript": "^3.8.3",
"yalc": "^1.0.0-pre.53"
},
"eslintConfig": {
"rules": {
"react/react-in-jsx-scope": "off",
"no-useless-computed-key": "off",
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
]
}
}
}