-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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": "ts-discord-bot",
"version": "2.0.0",
"description": "Discord bot made with Typescript",
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && tsc -p .",
"start": "node dist/index.js",
"dev": "nodemon -w ./src -w ./.env ./src/index.ts"
},
"author": "BurakBey",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.33",
"path": "^0.12.7",
"require-all": "^3.0.0"
},
"devDependencies": {
"@types/moment-duration-format": "^2.2.3",
"@types/node": "^14.14.10",
"@types/require-all": "^3.0.3",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BUR4KBEY/ts-discord-bot.git"
},
"bugs": {
"url": "https://github.com/BUR4KBEY/ts-discord-bot/issues"
},
"homepage": "https://github.com/BUR4KBEY/ts-discord-bot#readme"
}