-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.5 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
{
"$schema": "https://json.schemastore.org/package",
"name": "stephan",
"version": "1.0.0",
"description": "",
"main": "build/Main.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "NODE_ENV=development nodemon ts-node-esm src/Main.ts",
"start:dev": "ts-node-esm src/Main.ts",
"start:prod": "node build/Main.js",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint ./",
"lint:fix": "eslint --fix ./",
"type-check": "tsc --noEmit",
"prepare": "is-ci || husky install"
},
"author": {
"email": "[email protected]",
"name": "Maximilian Hofmann",
"url": "https://maxi.wildemail.de"
},
"license": "AGPL-3.0",
"devDependencies": {
"@types/exaroton": "^1.8.0",
"@types/ms": "^0.7.31",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.29.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"husky": "^8.0.2",
"is-ci": "^3.0.1",
"prettier": "^2.7.1",
"prisma": "4.6.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@discordjs/opus": "0.8.0",
"@discordjs/voice": "^0.13.0",
"@discordx/di": "^3.0.2",
"@discordx/importer": "^1.1.10",
"@discordx/music": "^4.1.0",
"@discordx/pagination": "^3.3.1",
"@discordx/utilities": "^5.1.0",
"@prisma/client": "4.6.1",
"@sapphire/shapeshift": "^3.7.0",
"@yarnpkg/pnpify": "^4.0.0-rc.28",
"discord-api-types": "^0.37.22",
"discord-spams": "^1.3.0",
"discord.js": "^14.7.1",
"discordx": "^11.4.0",
"dotenv": "^16.0.3",
"exaroton": "^1.8.0",
"moment": "^2.29.4",
"ms": "^2.1.3",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.7.0",
"webuntis": "^2.0.2"
},
"optionalDependencies": {
"bufferutil": "^4.0.7",
"erlpack": "^0.1.4",
"utf-8-validate": "^5.0.10",
"zlib-sync": "^0.1.7"
},
"engines": {
"node": ">=18.4.0",
"npm": ">=8.13.0"
},
"packageManager": "[email protected]"
}