-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.55 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
{
"name": "ist-discord-bot",
"version": "2.8.3",
"description": "Discord bot to manage the IST Hub server.",
"keywords": [
"discord",
"bot",
"ist-hub",
"ist",
"tecnico"
],
"homepage": "https://discord.leic.pt",
"main": "dist/bot.js",
"repository": "[email protected]:ist-bot-team/ist-discord-bot",
"author": "IST Bot Team",
"license": "MIT",
"engines": {
"node": ">=16.9.0",
"npm": ">=7.23.0",
"yarn": ">=1.22.0"
},
"dependencies": {
"@discordjs/rest": "^1.6.0",
"@prisma/client": "4.11.0",
"@types/better-sqlite3": "^5.4.3",
"axios": "^0.27.2",
"cheerio": "1.0.0-rc.10",
"discord.js": "^14.8.0",
"node-cron": "^3.0.2",
"path": "^0.12.7",
"pino": "^8.5.0",
"rss-parser": "^3.12.0",
"turndown": "^7.1.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/node": "^15.12.5",
"@types/node-cron": "^2.0.4",
"@types/turndown": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"pino-pretty": "^9.1.0",
"prettier": "^2.3.2",
"prisma": "4.11.0",
"typescript": "^4.8.3"
},
"scripts": {
"prepare": "husky install",
"build": "tsc",
"start": "node . | pino-pretty -c",
"start:docker": "prisma migrate deploy && node .",
"start:docker:dev": "npm run start:docker | pino-pretty -c",
"prisma:generate": "prisma generate"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
}
}