This repository was archived by the owner on Oct 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.95 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.95 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
95
96
97
98
{
"name": "sectom",
"version": "1.0.0",
"description": "A multi-purpose discord bot to keep your server protected and safe.",
"main": "./build/bot.js",
"type": "module",
"prisma": {
"schema": "src/prisma/schema.prisma"
},
"scripts": {
"build": "tsc",
"build:changelog": "npx @discordx/changelog --src src",
"lint": "eslint --fix \"./**/*.{ts,tsx}\"",
"prettier": "prettier --write .",
"format": "npm run lint & npm run prettier",
"prisma": "npx prisma db push & npx prisma generate",
"start": "tsx --trace-warnings src/bot.ts",
"prepare": "npm run build && npm run format && npm run prisma",
"load": "npm run prepare && npm run start",
"madge": "madge --extensions ts src --ts-config ./tsconfig.json",
"madge:orphans": "npm run madge -- --orphans",
"madge:circular": "npm run madge -- --circular",
"madge:graph": "npm run madge -- --image graph.svg",
"madge:circular_graph": "npm run madge:circular -- --image graph_circular.svg"
},
"repository": {
"type": "git",
"url": "https://github.com/OverwrittenCode/Sectom"
},
"author": "OverwrittenCode",
"license": "ISC",
"devDependencies": {
"@stylistic/eslint-plugin": "^2.3.0",
"@stylistic/eslint-plugin-migrate": "^2.3.0",
"@stylistic/eslint-plugin-ts": "^2.3.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/core-js": "^2.5.8",
"@types/module-alias": "^2.0.4",
"@types/ms": "^0.7.34",
"@types/node": "^20.12.12",
"@types/pg": "^8.11.4",
"@types/pluralize": "^0.0.33",
"@types/react": "^18.3.3",
"add": "^2.0.6",
"globals": "^15.8.0",
"prettier": "3.2.5",
"prisma": "^5.18.0",
"prisma-json-types-generator": "^3.0.4",
"supabase": "^1.153.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.2",
"typescript": "^5.5.3"
},
"dependencies": {
"@discordjs/builders": "^1.8.2",
"@discordx/importer": "^1.3.0",
"@discordx/pagination": "^3.5.1",
"@discordx/utilities": "^6.3.2",
"@neplex/vectorizer": "^0.0.4",
"@prisma/client": "^5.18.0",
"@prisma/extension-accelerate": "^1.0.0",
"@prisma/extension-pulse": "^1.2.0",
"@supabase/supabase-js": "^2.42.0",
"@types/lodash": "^4.17.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@upstash/query": "^0.0.2",
"@upstash/redis": "^1.29.0",
"ansi-colors": "^4.1.3",
"bson": "^6.6.0",
"canvacord": "^6.0.2",
"core-js": "^3.36.1",
"discord-html-transcripts": "^3.2.0",
"discord.js": "^14.15.3",
"discordx": "^11.12.0",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"madge": "^7.0.0",
"module-alias": "^2.2.3",
"ms": "^2.1.3",
"nodemon": "^3.1.0",
"pg": "^8.11.5",
"pluralize": "^8.0.0",
"pretty-ms": "^9.0.0",
"reflect-metadata": "^0.2.2",
"sharp": "^0.33.4",
"tsyringe": "^4.8.0",
"type-fest": "^4.15.0",
"typescript-eslint": "^7.16.0",
"winston": "^3.13.0"
}
}