This repository has been archived by the owner on Sep 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
67 lines (67 loc) · 2.06 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
{
"name": "reaction-roles",
"version": "2.0.0",
"description": "A Discord bot for reaction-based role assignment.",
"main": "dist/index.js",
"author": "Carter Himmel <[email protected]>",
"license": "Apache 2.0",
"scripts": {
"build": "pnpm run cleardir && pnpm run compile",
"cleardir": "rimraf dist/*",
"compile": "tsc",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --fix --ext .ts",
"pre-commit": "pnpm run lint && pnpm run build",
"start": "pnpm run build && node ."
},
"dependencies": {
"common-tags": "^1.8.0",
"discord-akairo": "^8.1.0",
"discord.js": "^12.3.1",
"ioredis": "^4.17.3",
"moment": "^2.27.0",
"moment-duration-format": "^2.3.2",
"node-emoji": "^1.10.0",
"node-fetch": "^2.6.0",
"pg": "^8.3.0",
"typeorm": "^0.2.25",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/common-tags": "^1.8.0",
"@types/dotenv": "^6.1.1",
"@types/ioredis": "^4.17.3",
"@types/moment-duration-format": "^2.2.2",
"@types/node": "^12.12.54",
"@types/node-emoji": "^1.8.1",
"@types/node-fetch": "^2.5.7",
"@types/ws": "^6.0.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-marine": "^6.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"tslib": "^1.13.0",
"typescript": "^3.9.7",
"winston": "^3.2.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"erlpack": "github:discord/erlpack",
"utf-8-validate": "^5.0.2",
"zlib-sync": "^0.1.7"
},
"eslintConfig": {
"extends": "marine/prettier/node",
"rules": {
"comma-dangle": [
"error",
"always-multiline"
]
}
}
}