-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.8 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
{
"name": "@pixelcraftstudios/aavegotchi-types",
"version": "1.0.1-e",
"description": "Types for Aavegotchi contracts and subgraphs",
"main": "dist/src/index.js",
"types": [
"dist/gen/gen.d.ts",
"dist/src/index.d.ts",
"dist/typechain/*.d.ts"
],
"scripts": {
"test": "ts-mocha test/test.ts",
"clean": "rm -rf typechain/** && yarn hardhat clean",
"submodule-deps": "for i in $(ls -d src/contracts/*); do echo $i && yarn --cwd src/contracts/$i hardhat compile; done",
"update-submodules": "git submodule update --recursive --init && git submodule foreach --recursive git pull origin master --recurse-submodules && yarn",
"update-typechain": "yarn typechain 'abi/**/*.json' --target ethers-v5 --out-dir typechain --always-generate-overloads && bash scripts/clean.sh",
"bundle": "cp $(ls typechain/*.ts) dist/typechain/ && yarn pack",
"release": "yarn bundle && yarn tsc && yarn publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aavegotchi/aavegotchi-types.git"
},
"author": "Pixelcraft Studios",
"license": "TBD",
"dependencies": {
"ethers": "^5.6.8",
"graphql": "^16.5.0",
"graphql-request": "^5.1.0",
"graphql-tag": "^2.12.6"
},
"files": [
"dist/gen",
"dist/src",
"dist/typechain"
],
"devDependencies": {
"@aave/core-v3": "^1.17.1",
"@chainlink/contracts": "^0.6.0",
"@ethersproject/abi": "^5.6.3",
"@ethersproject/bytes": "^5.6.1",
"@ethersproject/providers": "^5.6.8",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/graphql-modules-preset": "^2.3.11",
"@graphql-codegen/typescript": "^2.4.11",
"@graphql-codegen/typescript-generic-sdk": "^3.0.4",
"@graphql-codegen/typescript-graphql-request": "^4.4.8",
"@graphql-codegen/typescript-operations": "^2.4.0",
"@graphql-codegen/typescript-react-query": "^4.0.6",
"@graphql-codegen/typescript-resolvers": "^2.6.4",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "4.8.1",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/expect": "^24.3.0",
"@types/graphql": "^14.5.0",
"@types/mocha": "^10.0.1",
"@types/require-dir": "^1.0.2",
"chai": "^4.3.6",
"hardhat": "^2.11.2",
"hardhat-abi-exporter": "^2.9.0",
"hardhat-typechain": "^0.3.5",
"ts-generator": "^0.1.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.8.0",
"typechain": "^8.0.0",
"typescript": "^4.7.2"
},
"homepage": "https://github.com/aavegotchi/aavegotchi-types",
"bugs": {
"url": "https://github.com/aavegotchi/aavegotchi-types/issues"
},
"publishConfig": {
"access": "public",
"@pixelcraftstudios:registry": "https://registry.npmjs.org/"
}
}