-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
84 lines (84 loc) · 2.32 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
{
"private": true,
"name": "draconian-bot",
"version": "2.1.0",
"description": "Multi-Purpose & Productivity concentrated Discord BOT.",
"license": "MIT",
"author": "cktsun1031",
"homepage": "https://github.com/cktsun1031/DraconianBot#readme",
"repository": {
"url": "git+https://github.com/cktsun1031/DraconianBot.git"
},
"bugs": {
"url": "https://github.com/cktsun1031/DraconianBot/issues"
},
"main": "src/index.ts",
"engines": {
"node": ">=16.9.0"
},
"type": "module",
"scripts": {
"clean": "rimraf ./dist",
"dev": "nodemon",
"lint": "tsc && eslint --fix .",
"format": "prettier -w .",
"lint:type": "tsc",
"start": "cross-env NODE_ENV=production node --loader @esbuild-kit/esm-loader dist/index.js",
"sync": "node --loader @esbuild-kit/esm-loader tools/copy-config.ts"
},
"dependencies": {
"@discordjs/builders": "1.3.0",
"@discordjs/rest": "1.3.0",
"@fastify/rate-limit": "7.5.0",
"@vitalets/google-translate-api": "8.0.0",
"axios": "1.1.3",
"canvas": "2.10.1",
"chalk": "5.1.2",
"cross-env": "7.0.3",
"crypto-js": "4.1.1",
"dayjs": "1.11.6",
"discord-api-types": "0.37.15",
"discord.js": "14.6.0",
"dotenv": "16.0.3",
"fastify": "4.9.2",
"gifencoder": "2.0.1",
"glob": "8.0.3",
"mongoose": "6.7.0",
"ms": "2.1.3",
"node-cache": "5.1.2",
"pidusage": "3.0.2",
"string-similarity": "4.0.4",
"urban-dictionary": "3.0.2",
"xml2js": "0.4.23"
},
"devDependencies": {
"@types/crypto-js": "4.1.1",
"@types/gifencoder": "2.0.1",
"@types/glob": "8.0.0",
"@types/ms": "0.7.31",
"@types/node": "18.11.7",
"@types/pidusage": "2.0.2",
"@types/string-similarity": "4.0.0",
"@types/urban-dictionary": "3.0.0",
"@types/xml2js": "0.4.11",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"concurrently": "7.5.0",
"eslint": "8.26.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"nodemon": "2.0.20",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"typescript": "4.8.4"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"delay": 2500,
"ignore": "dist,temp,node_modules",
"exec": "node --loader @esbuild-kit/esm-loader --inspect src/index.ts"
}
}