This repository has been archived by the owner on Jan 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.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
{
"name": "study-bot",
"description": "A Discord bot for servers that focus on particular university majors.",
"authors": "Mitch Talmadge <MitchTalmadge>",
"version": "1.0.0",
"scripts": {
"debug": "node --inspect -r tsconfig-paths/register -r ts-node/register ./src/main.ts",
"debug:mongo": "node --inspect -r tsconfig-paths/register -r ts-node/register ./src/dev/init.ts",
"start": "node -r tsconfig-paths/register -r ts-node/register ./src/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MitchTalmadge/StudyBot.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/MitchTalmadge/StudyBot/issues"
},
"homepage": "https://github.com/MitchTalmadge/StudyBot#readme",
"dependencies": {
"axios": "^0.26.0",
"discord.js": "^12.5.1",
"express": "^4.17.3",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mongoose": "^5.10.14",
"nanoid": "^3.3.1",
"node": "^17.4.0",
"node-schedule": "^1.3.2",
"nodemailer": "^6.7.2",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/lodash": "^4.14.165",
"@types/mongoose": "^5.10.0",
"@types/node": "^17.0.21",
"@types/nodemailer": "^6.4.0",
"@types/node-schedule": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-simple-import-sort": "^5.0.3",
"mongodb-memory-server": "^6.9.2",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.5"
}
}