-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "pentary",
"version": "1.5.0",
"description": "Discord client for Quendl to handle users requests",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "concurrently \"tsc -w\" \"nodemon ./dist/index.js\"",
"build": "tsc --project ./",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "github.com/vKxni",
"license": "ISC",
"devDependencies": {
"@types/diff": "^5.0.2",
"@types/ms": "^0.7.31",
"@types/node-cron": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"diff": "^5.1.0",
"eslint": "^8.13.0",
"nodemon": "^2.0.15",
"typescript": "^4.7.4"
},
"dependencies": {
"@discordjs/rest": "^0.3.0",
"@types/mongoose": "^5.11.97",
"@types/nodemailer": "^6.4.4",
"axios": "^0.26.0",
"colors": "^1.4.0",
"concurrently": "^7.2.2",
"cross-fetch": "^3.1.5",
"discord-api-types": "^0.34.0",
"discord.js": "^13.8.1",
"dotenv": "^16.0.0",
"glob": "^8.0.1",
"mongoose": "^6.3.2",
"ms": "^2.1.3",
"node-cron": "^3.0.1",
"nodemailer": "^6.7.5",
"path": "^0.12.7",
"uuid": "^8.3.2"
}
}