-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.2 KB
/
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
38
39
{
"name": "arduino-bot",
"description": "The new and improved custom discord bot to power the official Arduino discord server @ https://arduino.cc/discord",
"version": "0.1.0",
"main": "./dist/src/index.js",
"scripts": {
"start": "node ./dist/src/index.js",
"build": "tsc -p .",
"dev": "tsnd --respawn --transpile-only --exit-child ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/max-bromberg/arduino-bot.git"
},
"bugs": {
"url": "https://github.com/max-bromberg/arduino-bot/issues"
},
"homepage": "https://github.com/max-bromberg/arduino-bot#readme",
"author": "Max Bromberg and Contributors",
"license": "GPL-3.0-or-later",
"dependencies": {
"@prisma/client": "^4.7.1",
"@sapphire/discord.js-utilities": "^5.0.1",
"@sapphire/framework": "^3.1.1",
"@sapphire/plugin-hmr": "^2.0.0",
"@sapphire/plugin-logger": "^3.0.1",
"@sapphire/plugin-subcommands": "^3.2.2",
"@sapphire/ts-config": "^3.3.4",
"@sapphire/utilities": "^3.10.1",
"discord.js": "^13.11.0",
"dotenv": "^16.0.2"
},
"devDependencies": {
"@types/node": "^18.11.15",
"prisma": "^4.7.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
}
}