forked from snapshot-labs/snapshot-strategies
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·59 lines (59 loc) · 1.68 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": "@snapshot-labs/strategies",
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"repository": "snapshot-labs/snapshot-strategies",
"license": "MIT",
"scripts": {
"build": "tsc -p .",
"test": "jest -i",
"prepublishOnly": "npm run build",
"prepare": "npm run build",
"postbuild": "copyfiles -u 1 src/**/*.md dist/ && copyfiles -u 1 src/**/*.json dist/",
"lint": "eslint . --ext .ts,.json --fix"
},
"dependencies": {
"@ethersproject/abi": "^5.0.4",
"@ethersproject/address": "^5.0.4",
"@ethersproject/bignumber": "^5.0.12",
"@ethersproject/bytes": "^5.0.8",
"@ethersproject/contracts": "^5.0.3",
"@ethersproject/hash": "^5.0.9",
"@ethersproject/providers": "^5.3.1",
"@ethersproject/solidity": "^5.0.10",
"@ethersproject/strings": "^5.0.5",
"@ethersproject/units": "^5.0.3",
"@ethersproject/wallet": "^5.4.0",
"@snapshot-labs/snapshot.js": "^0.4.7",
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/v3-sdk": "^3.3.1",
"cross-fetch": "^3.0.6",
"eth-ens-namehash": "^2.0.8",
"json-to-graphql-query": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^13.9.5",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"copyfiles": "^2.4.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^28.1.1",
"prettier": "2.2.0",
"ts-jest": "^28.0.5",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=14"
}
}