-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
96 lines (96 loc) · 2.89 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
93
94
95
96
{
"name": "@badger-dao/sdk",
"version": "1.23.0",
"description": "Badger Protocol Typescript SDK",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": "https://github.com/Badger-Finance/badger-sdk",
"author": "Badger DAO",
"license": "MIT",
"keywords": [
"badger",
"defi",
"sdk"
],
"scripts": {
"init:sdk": "yarn codegen:graphql && yarn codegen:contracts && yarn build && ( husky install || true)",
"init:hooks": "husky install",
"build": "tsc -p .",
"clean": "rm -rf ./lib",
"codegen:graphql": "graphql-codegen -c codegen.yml",
"codegen:contracts": "typechain --target ethers-v5 --out-dir src/contracts src/abi/*.abi",
"format": "pretty-quick",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "jest --detectOpenHandles --runInBand",
"test:upd": "yarn test -u",
"test:path": "yarn test --no-cache --testPathPattern",
"test:clean": "jest --clearCache",
"prepublishOnly": "yarn run build",
"scripts:deployed": "ts-node -r dotenv/config scripts/deployed.at.ts",
"barrels": "barrelsby --config barrelsby.config.json"
},
"dependencies": {
"@0xsequence/indexer": "^0.40.6",
"@0xsequence/multicall": "^0.40.6",
"@0xsequence/provider": "^0.40.6",
"@0xsequence/relayer": "^0.40.6",
"@types/mkdirp": "^1.0.2",
"axios": "^0.24.0",
"ethers": "^5.5.2",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"graphql-tag": "^2.12.6"
},
"devDependencies": {
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@graphql-codegen/cli": "2.11.6",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-graphql-request": "4.5.3",
"@graphql-codegen/typescript-operations": "2.5.3",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@typechain/ethers-v5": "10.1.0",
"@types/jest": "27.0.2",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"barrelsby": "^2.4.0",
"commitlint": "16.2.1",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "7.0.4",
"jest": "27.3.1",
"jest-mock-extended": "^2.0.5",
"prettier": "2.4.1",
"pretty-quick": "3.1.3",
"semantic-release": "19.0.3",
"ts-jest": "27.0.7",
"tslib": "^2.6.0",
"typechain": "8.1.0",
"typescript": "4.7.4"
},
"files": [
"lib"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}