-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.13 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
{
"name": "community-service",
"version": "1.9.22",
"description": "A Discord bot in Typescript",
"main": "dist/src/index.js",
"type": "module",
"scripts": {
"build": "rimraf dist && prisma generate && 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": "pnpm run build && c8 lab -v --leaks",
"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.3",
"@hapi/hapi": "^21.4.10",
"@prisma/client": "^7.9.0",
"@t3-oss/env-core": "^0.13.10",
"cross-env": "^10.1.0",
"discord-api-types": "^0.38.51",
"discord.js": "^14.25.1",
"dotenv": "^17.3.1",
"joi": "^18.2.1",
"jsdom": "^29.1.1",
"node-libcurl": "^v5.0.2",
"prisma": "^7.9.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^10.0.1",
"@hapi/code": "^9.0.3",
"@hapi/iron": "^7.0.1",
"@hapi/lab": "^26.0.1",
"@tsconfig/node16": "^16.1.8",
"@types/jsdom": "^28.0.0",
"@types/ms": "^2.1.0",
"@types/node": "^26.1.1",
"@types/node-fetch": "^2.6.13",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"c8": "^12.0.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "0.28.1",
"eslint": "^10.8.0",
"globals": "^17.8.0",
"husky": "^9.1.7",
"lint-staged": "^17.2.0",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"tsx": "^4.21.0",
"typescript": "^6.0.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.1.0",
"utf-8-validate": "^6.0.6",
"zlib-sync": "^0.1.10"
},
"packageManager": "pnpm@11.15.0+sha512.266f8957a30d2be6e9468e5e66bcdedd35a794175f71b067ba8504d686cce1d0c0f429b33c323c3c569ad4891e667574a49ff71d1b89a22cc66f13c65818c578"
}