-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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
{
"name": "ist-discord-bot",
"version": "2.0.0",
"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",
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"@prisma/client": "^2.30.3",
"@types/better-sqlite3": "^5.4.3",
"discord.js": "^13.0.1",
"node-cron": "^3.0.0",
"path": "^0.12.7"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/node": "^15.12.5",
"@types/node-cron": "^2.0.4",
"@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",
"prettier": "^2.3.2",
"prisma": "^2.30.3",
"typescript": "^4.3.4"
},
"scripts": {
"prepare": "husky install",
"build": "tsc",
"start": "node ."
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
}
}