-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 984 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
{
"name": "discord-bot-template-ts",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"start:dev": "vite-node src/main.ts",
"build": "rm -rf ./dist/ && tsc && chmod +x dist/main.js",
"start": "node --experimental-specifier-resolution=node ./dist/main.js",
"register-commands:dev": "vite-node src/register-commands.ts",
"register-commands": "node --experimental-specifier-resolution=node ./dist/register-commands.js"
},
"devDependencies": {
"@api-typings/discord": "^6.0.0",
"@types/cron": "^2.0.0",
"@types/node": "^18.11.18",
"typescript": "^4.9.3"
},
"author": "sebferrer",
"dependencies": {
"cron": "^2.1.0",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"injection-js": "^2.4.0",
"moment-mini": "^2.29.4",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"vite-node": "^0.27.0"
}
}