forked from superhero-com/superhero-bot-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 KB
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
{
"name": "defi-bot",
"version": "0.1.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx tsx --watch ./src/index.ts",
"dev": "npx tsx --watch ./src/index.ts",
"prettier": "prettier . --check",
"lint": "tsc --noEmit -p . && npm run prettier",
"build": "tsc --build",
"prepare": "husky install"
},
"author": "",
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"license": "ISC",
"dependencies": {
"@aeternity/aepp-calldata": "^1.5.1",
"@aeternity/aepp-sdk": "^13.3.3",
"aeternity-fungible-token": "git+https://git@github.com/aeternity/aeternity-fungible-token#v2.2.0",
"bignumber.js": "^9.1.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "16.3.1",
"express": "^4.18.2",
"matrix-bot-sdk": "^0.7.0",
"openai": "^4.71.0",
"showdown": "^2.1.0",
"superhero-bot-contracts": "git+ssh://git@github.com/superhero-com/superhero-bot-contracts#main",
"typescript": "^5.2.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.9.4",
"@types/showdown": "^2.0.6",
"husky": "^8.0.3",
"prettier": "3.1.0"
}
}