-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.63 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
{
"name": "ping-pewds",
"description": "A discord bot that blocks pings of specified users, unless they are actively talking",
"version": "1.0.0",
"main": "lib/index.js",
"license": "GPL-3.0",
"author": {
"name": "NewCircuit",
"url": "https://github.com/NewCircuit"
},
"repository": {
"type": "git",
"url": "https://github.com/NewCircuit/ping-pewds"
},
"scripts": {
"start": "node ./lib/index.js",
"dev": "nodemon --watch src/**/* -e ts,json --exec node --inspect=9229 -r ts-node/register src",
"test-database": "mocha -r ts-node/register \"src/database/tests/**/runner.test.ts\" --watch --watch-files **/*.ts",
"build": "tsc",
"pm2": "pm2 start ecosystem.config.js",
"prettier": "prettier --write \"./src/**/*.{ts,tsx}\"",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts src/ --fix"
},
"dependencies": {
"async-mutex": "^0.3.1",
"discord.js": "^12.5.3",
"discord.js-commando": "^0.12.3",
"js-yaml": "^4.1.0",
"pg": "^8.6.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^15.12.4",
"@types/js-yaml": "^4.0.1",
"@typescript-eslint/parser": "^4.29.2",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@types/pg": "^8.6.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint": "^7.32.0",
"chai": "^4.3.0",
"mocha": "^9.0.2",
"nodemon": "^2.0.7",
"prettier": "^2.3.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}