-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.96 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": "wikiactivity",
"version": "1.5.3",
"private": true,
"main": "dist/main.js",
"license": "MIT",
"scripts": {
"prepare": "husky install .github/husky",
"build": "rimraf tsconfig.tsbuildinfo dist && yarn db:generate && yarn tsc --listEmittedFiles --incremental",
"build:watch": "yarn tsc -w --incremental",
"db:generate": "yarn prisma generate",
"db:migrate": "yarn prisma migrate deploy || true",
"lint": "eslint src/ --ext .ts --cache",
"lint:fix": "eslint src/ --fix --ext .ts --cache",
"start": "yarn db:migrate && doppler run -- yarn node --enable-source-maps dist/main.js"
},
"dependencies": {
"@prisma/client": "4.10.1",
"@quority/activity": "^1.1.1",
"@quority/core": "^4.0.3",
"@quority/fandom": "^4.0.8",
"@sapphire/decorators": "^6.0.0",
"@sapphire/discord-utilities": "^3.0.0",
"@sapphire/duration": "^1.0.0",
"@sapphire/framework": "4.0.1",
"@sapphire/pieces": "^3.6.0",
"@sapphire/plugin-api": "^5.0.0",
"@sapphire/plugin-i18next": "^5.0.0",
"@sapphire/plugin-scheduled-tasks": "^6.0.0",
"@sapphire/shapeshift": "^3.8.1",
"@sapphire/utilities": "^3.11.0",
"bullmq": "^3.6.4",
"colorette": "^2.0.19",
"discord-api-types": "^0.37.31",
"discord.js": "^14.7.1",
"ico-to-png": "^0.2.1",
"ioredis": "^5.3.0",
"mysql2": "^2.3.3",
"pino": "^8.8.0",
"pino-pretty": "^9.1.1",
"ts-dotenv": "^0.9.0",
"undici": "^5.19.1"
},
"devDependencies": {
"@bitomic/eslint-config": "^1.0.0",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prisma": "4.10.1",
"rimraf": "^4.1.2",
"typescript": "^4.9.4"
},
"packageManager": "yarn@3.3.1"
}