-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.17 KB
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
{
"name": "reciple-app",
"type": "module",
"private": true,
"scripts": {
"build": "rimraf ./modules && tsc",
"start": "reciple",
"test": "npm run build && npm run test:start",
"test:start": "reciple -c reciple.dev.mjs",
"dev": "nodemon --watch src --ext ts,mts,cts --exec \"npm run build && reciple -c reciple.dev.mjs\" --signal SIGHUP",
"db:generate": "prisma format && prisma generate",
"db:push": "prisma format && prisma db push",
"watch": "tsc --watch --noEmit",
"setup": "npm i && prisma deploy && npm run build",
"push:models": "git add models/* && git commit models/* . -m \"Automatic model upstream update\" && git push",
"git:pull": "git pull && npm i && npm run build && pm2 restart TnsBot --update-env"
},
"dependencies": {
"@avionrx/pterodactyl-js": "^2.1.5",
"@catplusplus/naive-bayes": "^1.0.1",
"@discordjs/opus": "^0.9.0",
"@falloutstudios/sourcebin.js": "^2.2.0",
"@prisma/client": "^5.15.1",
"@reciple/core": "^9.2.1",
"@reciple/update-checker": "^9.1.0",
"@reciple/utils": "^9.2.1",
"@saipulanuar/google-translate-api": "^8.0.0",
"@thenorthsolution/djs-giveaways": "^1.0.0",
"@thenorthsolution/djs-pagination": "^1.0.0",
"@thenorthsolution/djs-scam-links": "^1.0.0",
"axios": "^1.7.2",
"bing-translate-api": "^4.0.2",
"boolean": "^3.2.0",
"cheerio": "^1.0.0-rc.12",
"discord-html-transcripts": "^3.2.0",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"fallout-utility": "^2.9.1",
"lodash": "^4.17.21",
"marked": "^13.0.0",
"ms": "^2.1.3",
"reciple": "^9.2.1",
"reciple-anticrash": "^3.2.0",
"reciple-dev-commands": "^3.2.0",
"reciple-interaction-events": "^3.2.0",
"reciple-registry-cache": "^3.2.0",
"sponsorblock-api": "^0.2.4",
"string-similarity-alg": "^1.3.2",
"tesseract.js": "^5.1.0",
"xml2js": "^0.6.2",
"yaml": "^2.4.5",
"youtube-ext": "^1.1.25"
},
"devDependencies": {
"@types/lodash": "^4.17.5",
"@types/ms": "^0.7.34",
"@types/node": "^20.14.8",
"@types/xml2js": "^0.4.14",
"nodemon": "^3.1.4",
"prisma": "^5.15.1",
"rimraf": "^5.0.7",
"typescript": "^5.5.2"
}
}