-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 919 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": "papertrader",
"version": "1.0.0",
"description": "Paper trader discord bot allowing users to trade stocks with real time price updates and fake money",
"main": "index.js",
"devDependencies": {
"@types/node": "^18.11.9",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"scripts": {
"start": "nodemon src/Bot.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julian31186/PaperTrader.git"
},
"author": "Julian Elmasry",
"license": "ISC",
"bugs": {
"url": "https://github.com/julian31186/PaperTrader/issues"
},
"homepage": "https://github.com/julian31186/PaperTrader#readme",
"dependencies": {
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"mongoose": "^6.7.2",
"yahoo-finance2": "^2.3.10",
"yahoo-stock-prices": "^1.1.0"
}
}