forked from Leagues-of-Code-TH/botsofcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.07 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
39
40
41
42
{
"name": "botsofcode",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"main": "build/main.js",
"scripts": {
"build": "tsc",
"build:changelog": "npx @discordx/changelog --root=src",
"dev": "ts-node-esm src/main.ts ",
"start": "node build/main.js",
"watch": "nodemon --exec ts-node-esm src/main.ts "
},
"dependencies": {
"@discordx/importer": "1.1.10",
"@discordx/pagination": "3.3.0",
"discord.js": "^14.9.0",
"discordx": "11.4.0",
"dotenv": "16.0.3",
"node-fetch": "^3.2.10",
"redis-om": "^0.3.6"
},
"devDependencies": {
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "2.0.20",
"prettier": "2.7.1",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "*"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}