generated from domanost/degen-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.02 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
{
"name": "project-name-here",
"version": "1.0.0",
"description": "description here",
"main": "app.js",
"private": true,
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest",
"qa": "node -r dotenv/config --trace-warnings dist/app/app.js dotenv_config_path=.env.qa",
"prod": "node -r dotenv/config --trace-warnings dist/app/app.js dotenv_config_path=.env.prod",
"prestart": "yarn install && yarn build",
"pretest": "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",
"watch": "tsc -p tsconfig.json -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BanklessDAO/"
},
"keywords": [
"bankless",
"discord",
"bot",
"crypto"
],
"author": "BANKLESS DAO",
"license": "MIT",
"bugs": {
"url": "https://github.com/BanklessDAO/"
},
"homepage": "https://github.com/BanklessDAO/discord-bot/blob/main/README.md",
"dependencies": {
"@logdna/logger": "^2.4.1",
"@types/node": "^16.7.1",
"dayjs": "^1.10.7",
"dd-trace": "^1.5.1",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"form-data": "^4.0.0",
"mongodb": "^3.6.9",
"p-queue": "^6.6.2",
"slash-create": "^4.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@shelf/jest-mongodb": "^2.1.0",
"@types/jest": "^27.0.1",
"@types/mongodb": "^3.6.20",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"builder-pattern": "^1.3.0",
"eslint": "^7.27.0",
"jest": "^27.0.6",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.3",
"typescript": "^4.4.3"
},
"engines": {
"yarn": "1.x",
"node": "16.x"
},
"engineStrict": true
}