-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.24 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": "onboarding-bot",
"version": "1.0.1",
"description": "An onboarding bot for discord communities.",
"main": "./prod/index.js",
"scripts": {
"prebuild": "rm -rf ./prod",
"build": "tsc",
"lint": "eslint src --max-warnings 0",
"start": "node -r dotenv/config ./prod/index.js",
"test": "echo 'no tests yet'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CommonsBuild/onboarding-bot.git"
},
"author": "Vyvy-vi",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/CommonsBuild/onboarding-bot/issues"
},
"homepage": "https://github.com/CommonsBuild/onboarding-bot#readme",
"engines": {
"node": "^16.9.1",
"npm": "^7.24.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsdoc": "36.1.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.4.1"
},
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"typescript": "^4.4.2",
"winston": "^3.3.3"
}
}