-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
43
44
{
"name": "countable",
"version": "0.2.0",
"description": "A small, robust bot to help support and manage a counting channel in your Discord server!",
"author": "Ben Silverman <[email protected]>",
"scripts": {
"dev": "ts-node src/index.ts",
"lint": "eslint src/**/*.ts",
"format": "prettier ./src/**/*.ts --write",
"build": "tsc",
"start": "node build/index.js",
"deploy-commands": "ts-node src/deploy-commands.ts"
},
"lint-staged": {
"*.ts": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
},
"license": "MIT",
"dependencies": {
"better-sqlite-pool": "^0.3.2",
"discord.js": "^14.11.0",
"dotenv": "^16.1.4",
"emoji-regex": "^10.2.1",
"enmap": "^5.9.8"
},
"devDependencies": {
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}