-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 797 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 797 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
{
"name": "BotRabbit",
"version": "1.0.0",
"main": "src/index.ts",
"author": "BrainRabbit",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev:server": "ts-node-dev -r tsconfig-paths/register --transpile-only --inspect --ignore-watch node_modules src/index.ts",
"start": "ts-node src/index.ts",
"test": "jest"
},
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^14.14.37",
"discord.js": "^12.5.3",
"dotenv": "^8.2.0",
"typescript": "^4.2.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6"
}
}