-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "channelmonitorapp",
"version": "3.0.0",
"description": "The channel monitoring app for the BSMG Discord server.",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"prisma:init": "prisma migrate dev --name init",
"prisma:gen": "prisma generate",
"lint": "prettier --check . && eslint src --ext ts",
"format": "prettier --write . && eslint src --ext ts --fix",
"fmt": "npm run format",
"check": "tsc --noEmit --skipLibCheck",
"test": "npm run check && npm run lint"
},
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/bsmg/cmb3.git"
},
"author": "BSMG",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/bsmg/cmb3/issues"
},
"homepage": "https://github.com/bsmg/cmb3#readme",
"devDependencies": {
"@luludev/eslint-config": "^0.5.4",
"eslint": "^8.57.0",
"prettier": "^3.3.2",
"prisma": "^5.18.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@discordjs/builders": "^1.8.2",
"@prisma/client": "^5.18.0",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5"
}
}