-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
{
"name": "utilitydust",
"version": "0.0.0",
"description": "A customizable Discord general-purpose bot, written in TypeScript",
"main": "dist/index.js",
"source": "src",
"types": "dist",
"engines": {
"node": ">=18.x"
},
"type": "commonjs",
"scripts": {
"start": "node dist/index.js",
"build": "npm run clean && npm run tsc && npm run tsc-alias",
"clean": "rimraf dist",
"tsc": "tsc --build tsconfig.json",
"tsc-alias": "tsc-alias -p tsconfig.json",
"deploy": "npm run build && npm run start",
"dev": "npx nodemon --exec \"npm run deploy\" -e \"ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/GaryCraft/UtilityDust.git"
},
"author": "GaryCraft",
"license": "MIT",
"bugs": {
"url": "https://github.com/GaryCraft/UtilityDust/issues"
},
"homepage": "https://github.com/GaryCraft/UtilityDust#readme",
"devDependencies": {
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.13",
"@types/node": "^17.0.25",
"@types/node-schedule": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.13.0",
"sqlite3": "^5.1.6",
"tsc-alias": "^1.8.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@garycraft/orizuru": "^0.2.2",
"@spaceproject/findrecursive": "^1.0.4",
"chalk": "^4.1.2",
"cookie-parser": "^1.4.6",
"discord.js": "^14.14.1",
"eventemitter2": "^6.4.9",
"express": "^4.18.2",
"i18next": "^23.11.2",
"i18next-fs-backend": "^2.3.1",
"mysql2": "^3.10.0",
"node-schedule": "^2.1.1",
"parzival": "^0.6.2",
"reflect-metadata": "^0.2.1",
"simple-git": "^3.24.0",
"socket.io": "^4.6.1",
"typeorm": "^0.3.17",
"uuid": "^9.0.1",
"winston": "^3.7.2",
"zod": "^3.22.4"
}
}