-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "perpetual-pools-v2-keeper-ts",
"version": "0.0.1",
"description": "Keeper bot for Tracer Perpetual Pools V2",
"main": "build/index.js",
"repository": "",
"author": "Chris Martin <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/node-fetch": "^2.5.11",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"eslint": "^7.30.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"dependencies": {
"@tracer-protocol/perpetual-pools-contracts": "^1.2.3",
"dotenv": "^10.0.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"ethers": "5.5.1",
"node-fetch": "^2.6.1"
},
"scripts": {
"tsc": "tsc",
"dev": "ts-node-dev --inspect --trace-warnings --respawn src/index.ts",
"lint": "eslint --ext .ts,.js ."
}
}