-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.34 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "discord-bot",
"version": "1.1.0",
"description": "<!-- PROJECT LOGO --> <p align=\"center\"> <a href=\"https://dyte.in\"> <img src=\"https://dyte-uploads.s3.ap-south-1.amazonaws.com/dyte-logo-dark.svg\" alt=\"Logo\" width=\"80\"> </a>",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"deploy-commands": "ts-node src/deploy-commands.ts",
"lint": "eslint . --ext .ts --ext .js",
"prestart": "node dist/deploy-commands.js",
"start": "node dist",
"prepare": "is-ci || husky install",
"lint:fix": "eslint . --ext .ts --ext .js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dyte-in/discord-bot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dyte-in/discord-bot/issues"
},
"homepage": "https://github.com/dyte-in/discord-bot#readme",
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"axios": "^0.21.4",
"discord-api-types": "^0.23.1",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"p-queue": "^6.6.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.1",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.5.0",
"husky": "^7.0.0",
"is-ci": "^3.0.0",
"jest": "^27.2.4",
"semantic-release": "^17.4.7",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}