This repository has been archived by the owner on Dec 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
121 lines (121 loc) · 2.98 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "tldr-dungeon-guide-bot",
"version": "1.3.0",
"description": "A simple too long didn't read dungeon guide to help players getting into the World of Warcraft: Shadowlands dungeons easily with simplified tactics.",
"main": "index.js",
"type": "module",
"scripts": {
"start:old": "node --loader ts-node/esm.mjs --experimental-specifier-resolution=node -r dotenv/config index.ts",
"start": "node --experimental-specifier-resolution=node -r dotenv/config dist/index.js",
"dev": "tsc-watch --outDir ./dist --onSuccess \"npm run start\"",
"lint": "eslint src/**",
"build": "tsc",
"test": "npm run lint && npm run build",
"release": "standard-version"
},
"repository": "https://gitlab.com/nikodyring/tldr-dungeon-guide",
"keywords": [
"warcraft",
"dungeons",
"shadowlands",
"guide",
"raids",
"discord",
"bot"
],
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test && npm run release"
}
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Other"
},
{
"type": "docs",
"section": "Other"
},
{
"type": "style",
"section": "Other"
},
{
"type": "refactor",
"section": "Other"
},
{
"type": "perf",
"section": "Other"
},
{
"type": "test",
"section": "Other"
},
{
"type": "build",
"section": "Other"
},
{
"type": "ci",
"secion": "Other"
}
]
},
"author": "PNG Gang",
"license": "AGPL-3.0-or-later",
"dependencies": {
"bufferutil": "^4.0.1",
"cabin": "^8.0.5",
"config": "^3.3.1",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"erlpack": "github:discord/erlpack",
"mongoose": "^6.0.12",
"pino": "^6.5.0",
"qrcode": "^1.4.4",
"signale": "^1.4.0",
"typescript": "^4.0.3",
"uncaught": "0.0.5",
"utf-8-validate": "^5.0.2"
},
"devDependencies": {
"@types/config": "0.0.36",
"@types/dotenv": "^8.2.0",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.11.2",
"@types/pino": "^6.3.0",
"@types/qrcode": "^1.3.5",
"@types/signale": "^1.4.1",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^7.0.4",
"standard-version": "^9.3.2",
"tsc-watch": "^4.2.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}