-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "moderation-bot",
"version": "0.0.1",
"description": "A Discord Bot written in TypeScript",
"main": "./dist/Bot.js",
"author": "Mickhat",
"license": "MIT",
"dependencies": {
"@discordjs/rest": "^1.3.0",
"@types/brotli": "^1.3.1",
"@types/ms": "^0.7.31",
"@types/node": "^18.11.9",
"@types/uuid": "^9.0.0",
"axios": "^1.6.0",
"brotli": "^1.3.3",
"date-fns": "^2.29.3",
"discord.js": "^14.15.3",
"dotenv": "^16.0.3",
"google-auth-library": "^8.7.0",
"googleapis": "^110.0.0",
"moment-timezone": "^0.5.45",
"node-fetch": "^3.3.0",
"node-schedule": "^2.1.1",
"sqlite3": "^5.1.6",
"ts-node": "^10.9.1",
"typescript": "^5.5.3",
"uuid": "^9.0.0"
},
"scripts": {
"dev": "nodemon -e ts --exec npm run start",
"start": "tsc && node .",
"build": "tsc",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"lint-fix": "eslint --ignore-path .eslintignore --ext .js,.ts . --fix",
"prepare": "husky install",
"test": "jest",
"format": "prettier --write ."
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/node-schedule": "^2.1.5",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^26.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"nodemon": "^3.1.4",
"prettier": "^3.1.1",
"ts-jest": "^29.0.3"
}
}