-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 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
{
"name": "bountybot",
"version": "0.0.0",
"description": "Discord bot client for the Bounty Board service. Made with love by the Bounty Board team and BanklessDao. ",
"main": "app.js",
"repository": "https://github.com/BanklessDAO/bountybot-.git",
"author": "BanklessDAO",
"license": "MIT",
"private": true,
"scripts": {
"dev": "nodemon",
"build": "rm -rf ./dist/ && tsc -p tsconfig.json",
"prestart": "yarn install && yarn build",
"start": "node --trace-warnings -r dotenv/config dist/app/app.js",
"lint": "eslint ./src/app/**/*.ts --ext .ts",
"format": "eslint ./src/app/**/*.ts --ext .ts --fix"
},
"dependencies": {
"@logdna/logger": "^2.6.0",
"@types/mongodb": "^3.6.20",
"discord.js": "^13.14.0",
"dotenv": "^10.0.0",
"mongodb": "^3.6.9",
"node-cron": "^3.0.2",
"nodemon": "^2.0.15",
"slash-create": "^5.6.1",
"typescript": "^4.5.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.7.0",
"add": "^2.0.6",
"eslint": "^8.5.0",
"yarn": "^1.22.17"
},
"engines": {
"yarn": "1.x",
"node": ">=16.10.0"
},
"engineStrict": true
}