-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.11 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": "@para-space/ape-compound",
"version": "0.1.0",
"description": "A bot for ParaSpace ape compound",
"keywords": [
"para-space",
"ape",
"compound"
],
"author": "@para-space",
"repository": {
"type": "git",
"url": "https://github.com/para-space/ape-compound-bot"
},
"license": "MIT",
"engines": {
"node": ">= 14"
},
"scripts": {
"start": "node --unhandled-rejections=strict packages/bot/dist/index.js",
"lint": "eslint packages --ext .ts,.tsx",
"lint:fix": "eslint packages --ext .ts,.tsx --fix",
"prebuild": "rimraf lib",
"build": "pnpm run -r build",
"build:docs": "typedoc --out docs packages",
"test": "pnpm run -r test",
"test:ci": "pnpm run -r test:ci",
"create:keystore": "ts-node packages/bot/scripts/create.ts"
},
"lint-staged": {
"{packages,tests}/**/*.ts": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@types/lodash": "^4.14.191",
"bignumber.js": "^9.1.1",
"dotenv": "^16.0.3",
"ethers": "5.7.2",
"fs-extra": "^11.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.0.0",
"@jest/types": "^28.1.3",
"@tsconfig/node16": "^1.0.3",
"@typechain/ethers-v5": "10.1.1",
"@types/jest": "28.1.6",
"@types/node": "^18.6.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"jest": "28.1.3",
"jest-config": "28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.6.0",
"tslib": "^2.4.1",
"typechain": "8.1.1",
"typedoc": "^0.23.10",
"typescript": "^4.9.4"
}
}