-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.17 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.17 KB
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": "codered-discordbot",
"version": "1.0.0",
"description": "CodeRED's Discord bot",
"main": "index.js",
"repository": "https://github.com/CodeRED-UH/CodeRED-DiscordBot.git",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"build": "tsc --build",
"clean": "tsc --build --clean",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts --fix src/",
"prettier": "prettier --check src/**/*.ts",
"prettier:fix": "prettier --write src/**/*.ts"
},
"dependencies": {
"@discordjs/rest": "^0.5.0",
"discord-api-types": "^0.33.5",
"discord.js": "^14.3.0",
"dotenv": "^16.0.1",
"googleapis": "^102.0.0"
},
"devDependencies": {
"@types/node": "^17.0.41",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "2.6.2",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.3"
}
}