forked from vercel/nextjs-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 909 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
31
32
33
34
{
"name": "next-bot",
"version": "1.0.0",
"author": "Rafael Almeida",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node-dev src/index.ts",
"dev:register-commands": "DEV=true ts-node ./src/register-commands.ts",
"register-commands": "ts-node ./src/register-commands.ts",
"build": "tsc",
"lint": "eslint src",
"format": "prettier --write \"**/*.{ts,tsx}\""
},
"dependencies": {
"discord.js": "^14.13.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.5.4",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=18"
}
}