-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.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
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
74
75
76
77
{
"name": "ezbot",
"version": "2.4.0",
"description": "Discord bot",
"main": "src/index.ts",
"engines": {
"node": "16.14.2",
"npm": "8.5.0"
},
"scripts": {
"start": "node --trace-warnings -r ts-node/register src/index.ts",
"nodemon": "nodemon",
"start:production": "node dist/src/index.js",
"build": "rimraf dist && tsc",
"register-commands": "ts-node ./scripts/register-commands.ts",
"register-commands:production": "node dist/scripts/register-commands.js",
"migrate-db:production": "node dist/scripts/migrate-db.js",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "jest --no-cache",
"i18n": "typesafe-i18n"
},
"nano-staged": {
"*.{js,ts}": "eslint --fix"
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged",
"preserveUnused": true
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:ReFruity/EzBot.git"
},
"author": "ReFruity",
"license": "ISC",
"bugs": {
"url": "https://github.com/ReFruity/EzBot/issues"
},
"homepage": "https://github.com/ReFruity/EzBot/blob/master/README.md",
"dependencies": {
"@discordjs/rest": "^0.3.0",
"@discordjs/voice": "^0.8.0",
"@google-cloud/speech": "^4.10.0",
"@types/node-schedule": "^2.1.0",
"discord-api-types": "^0.30.0",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"ffmpeg-static": "^5.0.0",
"libsodium-wrappers": "^0.7.10",
"mongodb": "^4.4.1",
"mongoose": "^6.2.8",
"nanocolors": "^0.2.13",
"node-schedule": "^2.1.0",
"opusscript": "^0.0.8",
"prism-media": "^1.3.2",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typesafe-i18n": "^5.2.0"
},
"devDependencies": {
"@types/i18n": "^0.13.2",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^27.5.1",
"mongodb-memory-server": "^8.4.1",
"nano-staged": "^0.6.0",
"nodemon": "^2.0.15",
"simple-git-hooks": "^2.7.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}