-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1 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
{
"name": "elytro",
"version": "3.0.0",
"description": "The official Elytro discord bot.",
"main": "src/index.ts",
"scripts": {
"dev": "set NODE_ENV=development&& ts-node src/index.ts",
"prod": "set NODE_ENV=production&& ts-node src/index.ts"
},
"keywords": [
"Elytro",
"discord-bot"
],
"author": "exceptionee",
"license": "Attribution-NonCommercial-ShareAlike 4.0 International",
"overrides": {
"discord-api-types": "0.37.100"
},
"dependencies": {
"cheerio": "^1.0.0",
"discord.js": "^14.16.3",
"dotenv": "^16.3.1",
"mongoose": "^8.0.0",
"sharp": "^0.33.5",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^5.3.2"
}
}