forked from snapshot-labs/snapshot-strategies
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.09 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
{
"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 strategy.test.ts",
"test:vp": "jest -i vp.test.ts",
"test:delegation": "jest -i delegation.test.ts",
"test:validation": "jest -i validation.test.ts",
"prepublishOnly": "npm run build",
"postinstall": "npm run build",
"postbuild": "copyfiles -u 1 \"src/**/*.md\" dist/ && copyfiles -u 1 \"src/**/*.json\" dist/",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ test/ --ext .ts,.json",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"@ethersproject/abi": "^5.6.4",
"@ethersproject/address": "^5.6.1",
"@ethersproject/bignumber": "^5.6.2",
"@ethersproject/bytes": "^5.6.1",
"@ethersproject/contracts": "^5.6.2",
"@ethersproject/hash": "^5.6.1",
"@ethersproject/providers": "^5.6.8",
"@ethersproject/solidity": "^5.6.1",
"@ethersproject/strings": "^5.6.1",
"@ethersproject/units": "^5.6.1",
"@ethersproject/wallet": "^5.6.2",
"@snapshot-labs/snapshot.js": "^0.12.2",
"@spruceid/didkit-wasm-node": "^0.2.1",
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/v3-sdk": "^3.9.0",
"blakejs": "^1.2.1",
"copyfiles": "^2.4.1",
"cross-fetch": "^3.1.6",
"dotenv": "^16.0.3",
"eth-ens-namehash": "^2.0.8",
"json-to-graphql-query": "^2.2.4",
"tulons": "^0.0.7"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.7.1",
"ts-jest": "^29.1.0",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16.10.0"
},
"resolutions": {
"@uniswap/v3-periphery": "1.4.1"
}
}