-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
74 lines (74 loc) · 2.25 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
69
70
71
72
73
74
{
"name": "devmod",
"version": "1.0.0",
"description": "A discord bot for moderating servers.",
"homepage": "https://github.com/redxtech/devmod#readme",
"bugs": "https://github.com/redxtech/devmod/issues",
"license": "MIT",
"author": "Gabe Dunn <[email protected]>",
"main": "src/main.ts",
"repository": "github:redxtech/devmod",
"scripts": {
"build": "tsc",
"dev": "nodemon --exec ts-node ./src/main.ts --strict",
"lint": "NODE_OPTIONS=\"--no-warnings\" yarn eslint --ext .js,.ts,.json ./**/*.[tj]s(on)? -f compassion",
"lint:fix": "yarn lint --fix",
"lint:pretty": "yarn lint -f pretty",
"lint:mo": "yarn lint -f mo"
},
"dependencies": {
"chalk": "^4.1.0",
"discord.js": "^12.3.1",
"dotenv": "^8.2.0",
"moment": "^2.27.0"
},
"devDependencies": {
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-perf-standard": "^2.1.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-formatter-compassion": "^1.1.2",
"eslint-formatter-mo": "^1.0.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-no-secrets": "^0.6.8",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-optimize-regex": "^1.2.0",
"eslint-plugin-perf-standard": "^1.0.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^21.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"xo": "^0.33.0"
},
"engines": {
"node": ">=12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.[tj]s": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,css,md}": "prettier --write"
}
}