-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "namelessbot",
"version": "2.0.0",
"type": "module",
"main": "index.js",
"repository": "https://github.com/NamelessGroup/namelessbot",
"contributors": [
"c0derMo",
"Kr0nox",
"MartinKrausewitz",
"myphyk"
],
"license": "MIT",
"devDependencies": {
"@knodes/typedoc-plugin-pages": "^0.23.1",
"@types/luxon": "^3.2.0",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-plugin-jsdoc": "^43.0.7",
"ts-node": "^10.9.1",
"typedoc": "^0.23.28",
"typedoc-plugin-missing-exports": "^1.0.0",
"typedoc-theme-hierarchy": "^3.1.0",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.3.4",
"discord.js": "^14.11.0",
"dotenv": "^16.0.3",
"feiertagejs": "^1.3.9",
"ka-mensa-fetch": "^4.0.1",
"luxon": "^3.3.0"
},
"scripts": {
"start": "node --loader ts-node/esm --experimental-specifier-resolution=node ./index.ts",
"lint": "eslint .",
"doc": "typedoc ."
}
}