forked from oldschoolgg/oldschoolbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.35 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
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"scripts": {
"gen": "concurrently \"prisma generate\" \"prisma generate --schema prisma/robochimp.prisma\" && echo \"Generated Prisma Client\"",
"lint": "concurrently \"prettier --use-tabs ./**/*.{js,md,json,yml} --write\" \"eslint *.ts \"{src,tests}/**/*.ts\" --fix\"",
"build:tsc": "tsc -p src",
"build": "concurrently \"yarn wipedist\" \"yarn gen\" && concurrently \"yarn prebuild:scripts\" && yarn build:tsc && echo \"Finished Building\"",
"wipedist": "rimraf \"dist/\"",
"start": "yarn build && concurrently \"tsc -w -p src\" \"node dist/\"",
"test": "concurrently \"tsc -p src\" \"yarn test:lint\" \"yarn test:unit\"",
"test:lint": "eslint *.ts \"{src,tests}/**/*.ts\"",
"test:unit": "vitest run --coverage --config vitest.unit.config.ts",
"dev": "yarn wipedist && tsc -w -p src",
"test:watch": "vitest --config vitest.unit.config.ts --coverage",
"test:integration": "ts-node ./src/scripts/integration-tests.ts",
"prebuild:scripts": "ts-node -T ./src/scripts/render-creatables-file.ts",
"build:esbuild": "esbuild --bundle src/index.ts --outdir=dist --platform=node --loader:.node=file --external:canvas"
},
"dependencies": {
"@discordjs/builders": "^1.5.0",
"@fastify/cors": "^8.2.0",
"@fastify/helmet": "^10.1.0",
"@fastify/rate-limit": "^8.0.0",
"@fastify/sensible": "^5.2.0",
"@napi-rs/canvas": "0.1.38",
"@octokit/graphql": "^4.8.0",
"@oldschoolgg/toolkit": "^0.0.23",
"@prisma/client": "^3.15.1",
"@sapphire/stopwatch": "^1.4.0",
"@sapphire/time-utilities": "^1.6.0",
"@sentry/node": "^7.69.0",
"bufferutil": "^4.0.7",
"chart.js": "^3.7.0",
"chartjs-node-canvas": "github:gc/ChartjsNodeCanvas#a598b6dd27c44351f235bca07ca4ee660121f289",
"chartjs-plugin-datalabels": "^2.0.0",
"chokidar": "^3.5.3",
"deep-equal": "^2.2.2",
"deepmerge": "^4.3.1",
"discord.js": "^14.13.0",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.1.0",
"e": "^0.2.33",
"fastify": "^4.14.1",
"fastify-raw-body": "^4.2.0",
"he": "^1.2.0",
"lodash": "^4.17.21",
"lru-cache": "^8.0.0",
"mahoji": "^0.0.7",
"murmurhash": "^2.0.1",
"node-cron": "^3.0.2",
"node-fetch": "^2.6.7",
"oldschooljs": "^2.3.8",
"p-queue": "^6.6.2",
"piscina": "^3.2.0",
"random-js": "^2.1.0",
"simple-statistics": "^7.8.3",
"sonic-boom": "^3.8.0",
"table": "^6.8.0",
"zlib-sync": "^0.1.9",
"zod": "^3.22.3"
},
"devDependencies": {
"@oldschoolgg/eslint-config": "^2.0.13",
"@oldschoolgg/ts-config": "^0.0.1",
"@types/deep-equal": "^1.0.3",
"@types/he": "^1.1.2",
"@types/jest-image-snapshot": "^6.1.0",
"@types/lodash": "^4.14.195",
"@types/madge": "^5.0.0",
"@types/node": "^14.18.12",
"@types/node-cron": "^3.0.7",
"@types/node-fetch": "^2.6.1",
"@types/table": "^6.3.2",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vitest/coverage-c8": "^0.31.0",
"concurrently": "^7.6.0",
"esbuild": "^0.19.5",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unicorn": "^44.0.2",
"jest-image-snapshot": "^6.2.0",
"madge": "^6.0.0",
"prettier": "^2.7.1",
"prisma": "^3.15.1",
"rimraf": "^4.4.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"vitest": "^0.31.0"
},
"engines": {
"node": ">=18.12.0"
}
}