-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (42 loc) · 1.11 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
{
"name": "discord-bot",
"version": "1.0.0",
"description": "bot for discord",
"type": "module",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "tsx watch src/index.ts",
"prettier:fix": "prettier --write \"**/*.(ts|json)\"",
"prettier": "prettier src --check",
"lint": "eslint src",
"lint:fix": "pnpm lint src --fix",
"format": "pnpm prettier:fix && pnpm lint:fix"
},
"author": "nicky48",
"license": "MIT",
"devDependencies": {
"@swc/core": "^1.3.60",
"@swc/helpers": "^0.5.1",
"@types/cli-color": "^2.0.2",
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"chokidar": "^3.5.3",
"cli-color": "^2.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-editorconfig": "^4.0.3",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.7.1",
"prettier": "^2.8.8",
"regenerator-runtime": "^0.13.11",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
},
"dependencies": {
"discord.js": "^14.11.0",
"ts-node": "^10.9.1"
}
}