-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 955 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
{
"name": "crypto_monitor_bot",
"version": "1.0.0",
"main": "main.js",
"repository": "[email protected]:GiovaneIwamoto/monitor-bot.git",
"license": "MIT",
"scripts": {
"start": "node dist/main.js",
"dev": "ts-node-dev --respawn --transpile-only src/main.ts",
"build": "tsc",
"format": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.602.0",
"binance-api-node": "^0.12.7",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"node-cron": "^3.0.3"
},
"devDependencies": {
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.4"
}
}