-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "wise-old-man-bot",
"version": "1.4.7",
"description": "A Discord bot for the Wise Old Man projects (https://github.com/wise-old-man/wise-old-man/)",
"author": "Psikoi",
"license": "ISC",
"main": "dist/index.js",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.8.1"
},
"scripts": {
"build": "rimraf ./dist && tsc",
"lint": "eslint . --ext .ts",
"dev": "docker-compose up --build -d && docker logs -f bot",
"prod": "prisma migrate deploy && pm2-runtime dist/index.js",
"watch": "prisma migrate dev && ts-node-dev --poll --exit-child --respawn --transpile-only --ignore-watch node_modules src/index.ts"
},
"keywords": [
"discord",
"bot",
"osrs",
"runescape",
"oldschool",
"wiseoldman",
"wise-old-man"
],
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/lodash": "^4.14.155",
"@types/node": "^16.11.47",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"prisma": "^4.6.1",
"rimraf": "^3.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@prisma/client": "^4.6.1",
"@sapphire/discord.js-utilities": "^7.1.6",
"@sentry/node": "^7.28.0",
"@sentry/tracing": "^7.28.0",
"@wise-old-man/utils": "^3.3.6",
"canvas": "^2.6.1",
"cors": "^2.8.5",
"discord.js": "^14.14.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.19",
"moment": "^2.26.0",
"prom-client": "^14.1.1"
}
}