1
0
Fork 0
This repository has been archived on 2024-07-14. You can view files and clone it, but cannot push or open issues or pull requests.
Ellie-bot/package.json

26 lines
556 B
JSON
Raw Normal View History

2022-01-05 16:50:41 -08:00
{
2022-01-13 02:21:37 -08:00
"name": "elliebot",
2022-01-05 16:50:41 -08:00
"version": "1.0.0",
"main": "index.js",
"license": "GPL-3.0",
"dependencies": {
2022-01-15 22:57:19 -08:00
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
2022-01-13 02:21:37 -08:00
"mysql2": "^2.3.3",
"reflect-metadata": "^0.1.13",
2022-01-26 21:13:06 -08:00
"socket.io-client": "^4.4.1",
"typeorm": "^0.3.4"
2022-01-05 16:50:41 -08:00
},
"devDependencies": {
"@types/node": "^17.0.23",
2022-01-26 21:13:06 -08:00
"@types/socket.io-client": "^3.0.0",
2022-01-05 16:50:41 -08:00
"nodemon": "^2.0.15",
"typescript": "^4.6.3"
2022-01-05 16:50:41 -08:00
},
"scripts": {
"dev": "nodemon ./src/index.ts",
"start": "node ./build/index.js",
"build": "tsc"
}
}