forked from contrast-bot/contrast-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 992 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 992 Bytes
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
{
"name": "contrast-bot",
"version": "1.0.0",
"description": "Contrast Discord Bot",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"build": "tsc",
"deploy": "ts-node src/utils/deploy-commands.ts",
"watch": "tsc -w",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"init-db": "ts-node src/utils/init-database.ts"
},
"keywords": ["discord", "bot", "typescript"],
"author": "pilot2254",
"license": "MIT",
"dependencies": {
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/node": "^20.10.4",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"prettier": "^3.2.5"
}
}