forked from ud-cis-discord/Sage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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
{
"name": "sage",
"version": "3.2.2",
"engines": {
"node": ">=16.9.0"
},
"engineStrict": true,
"description": "A purpose build Discord bot to manage the UD CIS Discord server.",
"main": "dist/src/sage.js",
"scripts": {
"start": "node dist/src/sage.js",
"build": "tsc -p .",
"clean": "rm -rf dist",
"test": "eslint src --ext .ts",
"lint": "eslint src --ext .ts --fix",
"dev": "tsc-watch --onSuccess \"node dist/src/sage.js\"",
"onboard": "node dist/onboard/onboard.js",
"nudge": "node dist/onboard/nudge.js",
"autodoc": "node dist/autodoc/writecommands.js && autodoc/movemd.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ud-cis-discord/SageV2.git"
},
"author": "Josh Lyon, Ren Ross & Ben Segal",
"license": "MIT",
"bugs": {
"url": "https://github.com/ud-cis-discord/SageV2/issues"
},
"homepage": "https://github.com/ud-cis-discord/SageV2",
"dependencies": {
"@octokit/rest": "^18.3.5",
"canvas": "^2.8.0",
"console-stamp": "^3.0.2",
"discord.js": "^13.15.1",
"module-alias": "^2.2.2",
"moment": "^2.29.1",
"mongodb": "^3.6.3",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.1",
"nodemailer": "^6.4.17",
"parse-duration": "^0.4.4",
"pretty-ms": "^7.0.1"
},
"_moduleAliases": {
"@root": "dist",
"@lib": "dist/src/lib",
"@pieces": "dist/src/pieces"
},
"devDependencies": {
"@types/console-stamp": "^0.2.33",
"@types/mongodb": "^3.6.3",
"@types/node": "^14.14.20",
"@types/node-cron": "^2.0.3",
"@types/node-fetch": "^2.5.7",
"@types/nodemailer": "^6.4.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"tsc-watch": "^4.2.9",
"typescript": "^4.1.3"
}
}