-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
84 lines (84 loc) · 2.54 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "bulbbot",
"version": "2.7.2",
"description": "A discord moderation bot written in Discord.JS",
"main": "src/index.ts",
"scripts": {
"watch": "tsc -w",
"prestart": "tsc && node ./scripts/writeEnUsJson.js",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"start": "node build/src/index.js",
"nobuild": "node build/src/index.js",
"dev": "nodemon -w src -w tsconfig.json -w package.json -w types.d.ts -e ts,js,json,env --exec \\\"yarn\\\" -i src/languages/en-US.json -- start",
"pm2-start": "pm2 start build/index.js --watch --output ./logs/log.log --error ./logs/error.log --time --name bulbbot",
"delete:build": "rimraf build/*",
"clean": "rimraf build/*",
"prepare": "yarn husky install && yarn generate",
"generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"db:nuke": "prisma migrate reset",
"db:introspect": "prisma db pull",
"db:push": "prisma db push",
"db:format": "prisma format"
},
"repository": "git+https://github.com/TeamBulbbot//Bulbbot.git",
"author": "Team Bulbbot",
"license": "CC-BY-NC-ND-4.0",
"bugs": {
"url": "https://github.com/TeamBulbbot//Bulbbot/issues"
},
"homepage": "https://github.com/TeamBulbbot//Bulbbot#readme",
"dependencies": {
"@messageformat/runtime": "^3.0.0",
"@prisma/client": "3.15.2",
"@sentry/node": "^6.17.4",
"@sentry/tracing": "^6.17.4",
"axios": "^0.25.0",
"discord.js": "^13.8.0",
"dotenv": "^16.0.0",
"emoji-unicode": "^2.0.1",
"express": "^4.17.3",
"i18next": "^21.6.10",
"i18next-icu": "^2.0.3",
"imghash": "^0.0.9",
"install": "^0.13.0",
"intl-messageformat": "^9.11.3",
"js-yaml": "^4.1.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.35",
"node-cron": "^3.0.0",
"parse-duration": "^1.0.2",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"prisma": "^3.15.2",
"prom-client": "^14.0.1",
"safe-timers": "^1.1.0",
"sharp": "^0.30.5",
"shelljs": "^0.8.5",
"unicode": "^14.0.0",
"winston": "^3.5.1"
},
"devDependencies": {
"@messageformat/core": "^3.0.0",
"@types/express": "^4.17.13",
"@types/glob": "^7.2.0",
"@types/node": "^17.0.23",
"@types/sharp": "^0.29.5",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"discord-api-types": "^0.34.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1",
"typescript": "^4.5.5"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
}
}