-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 884 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 884 Bytes
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",
"main": "index.js",
"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"
},
"dependencies": {
"discord.js": "^14.7.1",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.3"
},
"engines": {
"node": ">=16.6"
}
}