-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.35 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
41
42
43
44
45
46
47
48
49
50
{
"name": "ts-discord-bot-starter-template",
"version": "1.0.0",
"main": "dist",
"repository": {
"type": "git",
"url": "https://github.com/barbarbar338/ts-discord-bot-template"
},
"author": {
"email": "[email protected]",
"name": "Barış DEMİRCİ",
"url": "https://barbarbar338.fly.dev"
},
"license": "GPL-3.0",
"description": "🤖 TypeScript Discord botu başlangıç altyapısı",
"scripts": {
"start:prod": "cross-env NODE_ENV=production node dist",
"start:dev": "cross-env NODE_ENV=development nodemon",
"prebuild": "rimraf dist",
"build": "tsc",
"format": "prettier --write .",
"format:watch": "onchange . -- prettier --write {{changed}}",
"lint": "eslint --fix .",
"lint:watch": "onchange . -- eslint --fix {{changed}}"
},
"devDependencies": {
"@types/node": "^15.3.1",
"@types/ws": "^7.4.4",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"cross-env": "^7.0.3",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.2",
"nodemon": "^2.0.7",
"onchange": "^7.1.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"bargs": "^1.0.3",
"discord.js": "^12.5.3",
"dotenv": "^9.0.2",
"pogger": "^0.0.8",
"ts-toolbelt": "^9.6.0",
"utility-types": "^3.10.0"
}
}