-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "tradebot",
"version": "1.0.0",
"description": "TBC",
"main": "index.ts",
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\", \"target\": \"es2017\", \"strict\": true, \"strictNullChecks\": true}' mocha -r ts-node/register 'test/**/*.test.ts'",
"playbook": "ts-node ./src/Playbook.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexanderGW/tradebot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlexanderGW/tradebot/issues"
},
"homepage": "https://github.com/AlexanderGW/tradebot#readme",
"dependencies": {
"@openzeppelin/contracts": "^5.0.2",
"@uniswap/v3-sdk": "^3.11.1",
"axios": "^1.7.7",
"dotenv": "^16.0.3",
"ethers": "^6.13.2",
"kraken-api": "^1.0.1",
"redis": "^4.6.4",
"talib": "^1.1.4",
"uuid": "^9.0.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/uuid": "^8.3.4",
"chai": "^4.3.6",
"ethereum-abi-types-generator": "^1.3.4",
"mocha": "^10.1.0",
"ts-node": "^10.9.1"
}
}