-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.61 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.61 KB
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
{
"name": "community-service",
"version": "1.9.17",
"description": "A Discord bot in Typescript",
"main": "dist/src/index.js",
"type": "module",
"scripts": {
"build": "rimraf dist && node build/run-esbuild.js",
"start": "cross-env NODE_ENV=production && node dist/index.js",
"dev": "cross-env NODE_ENV=development && tsx src/index.ts",
"dev:hot": "cross-env NODE_ENV=development && tsx watch src/index.ts",
"lint": "prettier --write \"src/**/*.ts\" && eslint --fix .",
"lint:prettier": "prettier --write \"src/**/*.ts\"",
"lint:eslint": "eslint .",
"commit": "cz",
"migrate:prod": "prisma migrate deploy",
"test:api": "npm run build && c8 lab -v -I __extends,__assign,__rest,__decorate,__param,__esDecorate,__runInitializers,__propKey,__setFunctionName,__metadata,__awaiter,__generator,__exportStar,__createBinding,__values,__read,__spread,__spreadArrays,__spreadArray,__await,__asyncGenerator,__asyncDelegator,__asyncValues,__makeTemplateObject,__importStar,__importDefault,__classPrivateFieldGet,__classPrivateFieldSet,__classPrivateFieldIn,__addDisposableResource,__disposeResources,__rewriteRelativeImportExtension",
"test:ts": "lab --typescript -v -a @hapi/code",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/LEDBrain/Community-Service.git"
},
"author": "LEDBrain <opensource@ledbrain.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/LEDBrain/Community-Service/issues"
},
"homepage": "https://github.com/LEDBrain/Community-Service#readme",
"dependencies": {
"@discordjs/rest": "^2.6.0",
"@hapi/hapi": "^21.4.3",
"@prisma/client": "^6.18.0",
"@t3-oss/env-core": "^0.13.8",
"cross-env": "^10.1.0",
"discord-api-types": "^0.38.31",
"discord.js": "^14.24.0",
"dotenv": "^17.2.3",
"joi": "^18.0.1",
"jsdom": "^27.0.1",
"node-libcurl": "^v5.0.0-2",
"zod": "^4.1.12"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.38.0",
"@hapi/code": "^9.0.3",
"@hapi/iron": "^7.0.1",
"@hapi/lab": "^25.3.2",
"@tsconfig/node16": "^16.1.6",
"@types/hapi__catbox": "^12.1.0",
"@types/jsdom": "^27.0.0",
"@types/ms": "^2.1.0",
"@types/node": "^24.9.1",
"@types/node-fetch": "^2.6.13",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"c8": "^10.1.3",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "0.25.11",
"eslint": "^9.38.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"prisma": "^6.18.0",
"rimraf": "^6.0.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "restricted"
},
"lint-staged": {
"*.{js,ts}": "npm run lint"
},
"overrides": {
"@sapphire/shapeshift": "3.9.2"
},
"optionalDependencies": {
"bufferutil": "^4.0.9",
"utf-8-validate": "^6.0.5",
"zlib-sync": "^0.1.10"
},
"packageManager": "pnpm@10.19.0+sha512.c9fc7236e92adf5c8af42fd5bf1612df99c2ceb62f27047032f4720b33f8eacdde311865e91c411f2774f618d82f320808ecb51718bfa82c060c4ba7c76a32b8"
}