-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.3 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
{
"name": "memebot",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"exports": [
"./dist/index.js"
],
"scripts": {
"lint": "eslint . --cache --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --cache --ext .js,.jsx,.ts,.tsx",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"clean": "git clean -xdf --exclude=\"/config/**/*\"",
"clean:dry": "git clean -xdf --exclude=\"/config/**/*\" --dry-run",
"build": "tsc --project tsconfig.json",
"start": "npx ts-node src/register-commands.ts && npm run start:bot",
"start:bot": "npm run build && node --enable-source-maps dist/index.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unicorn": "^46.0.0",
"prettier": "^2.8.7",
"typescript": "^5.4.5"
},
"dependencies": {
"@discordjs/builders": "^1.6.1",
"@discordjs/rest": "^1.7.0",
"cron": "^3.2.1",
"dayjs": "^1.11.7",
"discord-api-types": "^0.37.39",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"ts-node": "^10.9.1"
}
}