-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 2.39 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "hammertimebot",
"version": "1.0.0",
"description": "Discord bot version of https://hammertime.cyou using slash commands",
"author": "DJDavid98 <[email protected]> (https://github.com/DJDavid98)",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint \"src/**/*.ts\"",
"build": "tsc",
"build:clean": "rimraf build",
"start": "node ./build/index.js",
"prestart:dev": "node ./utils/translation-credits.js",
"start:dev": "npm run build:clean && npm run build && npm run start",
"watch:dev:tsc": "tsc --watch --preserveWatchOutput",
"watch:dev:nodemon": "nodemon ./build/index.js",
"watch:dev:commands": "concurrently --names TSC,Nodemon -c \"blue,green\" \"npm run watch:dev:tsc\" \"npm run watch:dev:nodemon\"",
"watch:dev": "npm run build:clean && npm run build && npm run watch:dev:commands",
"test": "jest --ci --randomize",
"test:watch": "jest --watch --randomize",
"prepare": "ts-patch install && typia patch && husky install"
},
"dependencies": {
"@discordjs/rest": "^2.4.0",
"axios": "^1.6.8",
"bufferutil": "^4.0.3",
"concurrently": "^8.2.0",
"discord-api-types": "^0.37.104",
"discord.js": "^14.16.3",
"dotenv": "^16.3.1",
"i18next": "^23.4.4",
"i18next-fs-backend": "^2.1.5",
"js-levenshtein": "^1.1.6",
"moment": "^2.29.4",
"moment-timezone": "^0.5.45",
"pm2": "^5.3.0",
"rimraf": "^5.0.1",
"shell-escape": "^0.2.0",
"tslib": "^2.6.2",
"typia": "^6.0.3",
"utf-8-validate": "^6.0.3",
"zlib-sync": "^0.1.8"
},
"devDependencies": {
"@types/i18next-fs-backend": "^1.1.2",
"@types/jest": "^29.5.3",
"@types/js-levenshtein": "^1.1.1",
"@types/node": "^20.14.12",
"@types/shell-escape": "^0.2.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-i18n-validator": "^0.1.4",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-ts-webcompat-resolver": "^1.0.0",
"nodemon": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-patch": "^3.1.2",
"typescript": "^5.4.5"
},
"nodemonConfig": {
"delay": 1000
},
"engines": {
"node": "20.x"
}
}