forked from ppauel/typescript-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.14 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
40
{
"name": "typescript-discord-bot",
"version": "1.0.0",
"description": "A TypeScript Discord bot template",
"main": "dist/bot.js",
"scripts": {
"start": "npm run start:bot",
"prestart:bot": "npm run build",
"start:bot": "node ./dist/bot.js",
"prestart:manager": "npm run build",
"start:manager": "node ./dist/manager.js",
"dev:bot": "nodemon src/bot.ts",
"dev:manager": "nodemon src/manager.ts",
"build": "tsc --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ppauel/typescript-discord-bot.git"
},
"author": "pauel",
"license": "MIT",
"bugs": {
"url": "https://github.com/ppauel/typescript-discord-bot/issues"
},
"homepage": "https://github.com/ppauel/typescript-discord-bot#readme",
"dependencies": {
"@fluent/bundle": "^0.17.1",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@types/node": "^18.11.11",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}