-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.82 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "shana",
"version": "5.0.0",
"description": "Notice me",
"private": true,
"type": "module",
"main": "./build/Main.js",
"scripts": {
"build": "tsc",
"dev": "node --loader ts-node/esm/transpile-only src/Main.ts",
"serve": "node build/Main.js",
"lint": "eslint . --ext .ts --max-warnings 0",
"lint-fix": "eslint . --ext .ts --fix",
"start": "node build/Main.js",
"start_js": "npm run build & node build/Main.js",
"rebuild_and_start": "npm run build & npm run start",
"build_and_start": "npm run build & npm run restart_p2",
"restart_p2": "pm2 restart ../ecosystem/ecosystem.config.js --only ShanaBot",
"pm2_flush": "pm2 flush",
"update_deps": "npx npm-check-updates"
},
"repository": {
"type": "git",
"url": "https://github.com/VictoriqueMoe/Shana.git"
},
"author": "VictoriqueMoe",
"license": "ISC",
"bugs": {
"url": "https://github.com/VictoriqueMoe/Shana/issues"
},
"dependencies": {
"@discordx/importer": "^1.1.10",
"@discordx/pagination": "^3.3.1",
"@discordx/utilities": "^5.1.0",
"@overnightjs/core": "^1.7.6",
"anilist-node": "^1.13.0",
"better-sqlite3": "^7.6.2",
"common-tags": "^1.8.2",
"cron-validator": "^1.3.1",
"cronstrue": "^2.15.0",
"deepl": "^1.0.13",
"discord-api-types": "^0.37.17",
"discord-spams": "^1.3.0",
"discord.js": "^14.6.0",
"discordx": "^11.4.0",
"dotenv": "^16.0.3",
"dropbox": "^10.34.0",
"emoji-regex": "^10.2.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-promise-router": "^4.1.1",
"express-validator": "^6.14.2",
"ffmpeg": "^0.0.4",
"ffmpeg-static": "^5.1.0",
"fuse.js": "^6.6.2",
"glob": "^8.0.3",
"http-status-codes": "^2.2.0",
"immutable": "^4.1.0",
"is-image-fast": "^1.0.0",
"is-video": "^1.0.1",
"jet-logger": "^1.2.6",
"locale-codes": "^1.3.1",
"luxon": "3.1.0",
"md5": "^2.3.0",
"node-fetch": "^3.3.0",
"node-reverse-image-search": "^1.0.2",
"node-schedule": "^2.1.0",
"reflect-metadata": "^0.1.13",
"toad-scheduler": "^2.0.0",
"tsyringe": "^4.7.0",
"typeorm": "^0.3.10",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/express-jwt": "^6.0.4",
"@types/ffmpeg": "^1.0.4",
"@types/glob": "^8.0.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/luxon": "^3.1.0",
"@types/node": "^18.11.9",
"@types/node-schedule": "^2.1.0",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "4.8.4"
},
"engines": {
"node": ">=16.16.0",
"npm": ">=8.11.0"
}
}