-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.18 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
{
"name": "pinbot",
"version": "1.0.0",
"description": "📌 PinBot enables communities to allow users to pin messages even without the MANAGE_MESSAGES permission.",
"author": "Codeize",
"main": "dist/index.js",
"scripts": {
"sync": "slash-up sync",
"sync:dev": "slash-up sync -e development",
"start": "cd dist && node index.js",
"build": "npx tsc && prisma generate",
"dev": "npx tsc && slash-up sync && node dist/index.js",
"db:push": "prisma db push",
"lint": "npx eslint --ext .ts ./src",
"lint:fix": "npx eslint --ext .ts ./src --fix"
},
"dependencies": {
"@prisma/client": "5.7.1",
"cat-loggr": "^1.2.2",
"discord.js": "^14.14.1",
"dotenv": "^8.6.0",
"fastify": "^3.29.5",
"slash-create": "^5.14.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^14.18.63",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.4.1",
"prettier": "^2.8.8",
"prisma": "5.7.1",
"slash-up": "^1.4.2",
"ts-node": "^9.1.1",
"typescript": "^5.3.3"
}
}