-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 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
{
"name": "discordbot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc && tsc-alias",
"start": "node dist/index.js",
"dev": "tsc && tsc-alias && node dist/deploy-commands.js && node dist/index.js",
"deploy:commands": "tsc && tsc-alias && node dist/deploy-commands.js",
"plop": "plop",
"test": "jest",
"test:watch": "jest --watchAll"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">= 16.9.0"
},
"devDependencies": {
"@discordjs/builders": "^1.6.3",
"@types/cron": "^2.0.1",
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.3.1",
"@types/nodemailer": "^6.4.8",
"concurrently": "^8.2.0",
"jest": "^29.6.2",
"nodemon": "^2.0.22",
"plop": "^3.1.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"typescript": "^5.1.3"
},
"dependencies": {
"@discordjs/rest": "^1.7.1",
"axios": "^1.4.0",
"cron": "^2.3.1",
"discord.js": "^14.11.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"node-fetch": "^3.3.2",
"nodemailer": "^6.9.3",
"type-graphql": "^2.0.0-beta.2"
}
}