-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.71 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
{
"name": "trinity-bot",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"main": "build/src/main.js",
"scripts": {
"build": "npx prisma generate && tsc",
"build:changelog": "npx @discordx/changelog --root=src",
"dev": "ts-node-esm src/main.ts",
"start": "npx prisma generate && node --experimental-specifier-resolution=node build/src/main.js",
"watch": "nodemon --exec ts-node-esm src/main.ts",
"prisma-migrate": "npx prisma migrate dev --name init",
"prisma-studio": "npx prisma studio --port 23563",
"lint": "prettier --write . && eslint src --ext .ts --fix",
"updates": "npx npm-check-updates"
},
"dependencies": {
"@discordx/importer": "^1.2.1",
"@discordx/pagination": "^3.4.1",
"@discordx/utilities": "^5.2.1",
"@prisma/client": "^4.13.0",
"bufferutil": "^4.0.7",
"discord.js": "^14.8.0",
"discordx": "^11.7.4",
"dotenv": "^16.0.3",
"erlpack": "github:discord/erlpack",
"i18n": "^0.15.1",
"imgur": "^2.2.0",
"satori": "^0.4.4",
"satori-html": "^0.3.2",
"sharp": "^0.32.0",
"utf-8-validate": "^6.0.3",
"zlib-sync": "^0.1.8"
},
"devDependencies": {
"@types/i18n": "^0.13.6",
"@types/node": "^18.15.11",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"prisma": "^4.13.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}