-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1002 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": "ifpeopensource_bot",
"version": "1.0.0",
"main": "./src/index.ts",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only --rs .",
"deploy-commands": "ts-node-dev --transpile-only --rs ./src/deploy-commands.ts",
"build": "tsc",
"start": "node dist/src/index.js"
},
"dependencies": {
"@discordjs/builders": "^1.4.0",
"@discordjs/rest": "^1.5.0",
"@sentry/node": "^7.38.0",
"@sentry/tracing": "^7.38.0",
"discord-api-types": "^0.37.35",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
}
}