This repository has been archived by the owner on Feb 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.92 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
{
"name": "@mloberg/dwight-bot",
"license": "MIT",
"homepage": "https://github.com/mloberg/dwight-discord-bot",
"private": true,
"engines": {
"node": ">=16.6.0"
},
"scripts": {
"start": "node dist/index.js",
"test": "jest --coverage --verbose",
"build": "tsc",
"lint": "eslint --cache .",
"format": "npm run lint -- --fix",
"dev": "concurrently npm:watch:*",
"watch:bot": "nodemon -r dotenv/config dist/index.js | pino-pretty",
"watch:build": "tsc -w",
"watch:install": "nodemon -r dotenv/config dist/bin/install.js | pino-pretty",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^0.3.0",
"@keyv/redis": "^2.3.6",
"axios": "^0.26.1",
"discord-api-types": "^0.31.0",
"discord.js": "^13.8.0",
"joi": "^17.6.0",
"keyv": "^4.3.1",
"keyv-file": "^0.2.0",
"lodash": "^4.17.21",
"pino": "^8.1.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^27.4.1",
"@types/keyv": "^3.1.4",
"@types/lodash": "^4.14.182",
"@types/node": "16.11.41",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"concurrently": "^7.2.2",
"dotenv": "^16.0.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"jest": "^27.5.1",
"jest-matcher-specific-error": "^1.0.0",
"nodemon": "^2.0.20",
"pino-pretty": "^8.1.0",
"prettier": "^2.7.1",
"ts-jest": "^27.1.4",
"typescript": "^4.8.4"
},
"nodemonConfig": {
"delay": 2500,
"runOnChangeOnly": true,
"watch": [
"dist/"
]
}
}