-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 939 Bytes
/
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
{
"name": "bot",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prestart:dev": "npm run build",
"dev": "nodemon build/index.js",
"build": "rm -rf DefiLlama-Adapters && tsc",
"prestart": "npm run build",
"start": "node build/index.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.316.0",
"@types/express": "^4.17.13",
"@types/node": "^16.11.11",
"axios": "^0.24.0",
"chart.js": "^3.7.1",
"chartjs-node-canvas": "^4.1.6",
"discord.js": "^13.3.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"node-fetch": "^3.2.3",
"typescript": "^4.5.2"
},
"engines": {
"node": "17.x"
}
}