-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 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
{
"name": "node-dogebot",
"description": "Trading bot that buys DOGE when Elon Musk tweets",
"version": "1.0.0",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"build:docker": "DOCKER_BUILDKIT=1 docker build -t node-dogebot:1.0.0 .",
"debug": "ts-node ./src/index.ts",
"start": "node dist/index.js",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashmadev/node-dogebot.git"
},
"author": "AshmaDev",
"license": "MIT",
"homepage": "https://github.com/ashmadev/node-dogebot#readme",
"dependencies": {
"binance-api-node": "^0.12.4",
"dotenv": "^9.0.2",
"twit": "^2.2.11"
},
"devDependencies": {
"@types/node": "^20.2.5",
"@types/twit": "^2.2.31",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}