-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.84 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
{
"name": "community-service",
"version": "1.9.7",
"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 . --ext .ts",
"lint:prettier": "prettier --write \"src/**/*.ts\"",
"lint:eslint": "eslint . --ext .ts",
"commit": "cz",
"migrate:prod": "prisma migrate deploy",
"test:api": "npm run build && c8 lab -v",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/LEDBrain/Community-Service.git"
},
"author": "LEDBrain <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/LEDBrain/Community-Service/issues"
},
"homepage": "https://github.com/LEDBrain/Community-Service#readme",
"dependencies": {
"@discordjs/rest": "^2.3.0",
"@hapi/hapi": "^21.3.10",
"@prisma/client": "^5.15.1",
"@t3-oss/env-core": "^0.10.1",
"cross-env": "^7.0.3",
"discord-api-types": "^0.37.90",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"joi": "^17.13.3",
"jsdom": "^24.1.0",
"node-libcurl": "^4.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@hapi/code": "^9.0.3",
"@hapi/iron": "^7.0.0",
"@hapi/lab": "^25.2.0",
"@tsconfig/node16": "^16.1.3",
"@types/hapi__catbox": "^10.2.6",
"@types/jsdom": "^21.1.7",
"@types/ms": "^0.7.34",
"@types/node": "^20.14.6",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"c8": "^10.1.2",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "0.21.5",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prisma": "^5.15.1",
"rimraf": "^5.0.7",
"tsx": "^4.15.6",
"typescript": "^5.4.5"
},
"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.8",
"utf-8-validate": "^6.0.4",
"zlib-sync": "^0.1.9"
}
}