-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "srmkzilla-discord-bot",
"version": "1.0.0",
"description": "SRMKZILLA's discord bot",
"main": "build/index.js",
"scripts": {
"start:discord": "node build/index.js",
"start:api": "node build/src/api/app.js",
"start": "npx concurrently \"yarn start:discord\" \"yarn start:api\"",
"build": "npx tsc",
"dev": "npx tsc-watch --onSuccess \"yarn start\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Harsh Goel <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jimp": "^0.16.1",
"mongodb": "^4.1.2",
"nanoid": "^3.1.20",
"node-cache": "^5.1.2",
"slugify": "^1.4.7",
"yup": "^0.32.8"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/mongodb": "^3.6.3",
"@types/node": "^14.14.20",
"@types/node-cache": "^4.2.5",
"@types/yup": "^0.29.11",
"tsc-watch": "^4.2.9",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/srm-kzilla/discord-bot.git"
},
"bugs": {
"url": "https://github.com/srm-kzilla/discord-bot/issues"
},
"homepage": "https://github.com/srm-kzilla/discord-bot#readme"
}