-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
59 lines (59 loc) · 1.63 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": "discord-bot-test",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prebuild": "npm run clean && prisma generate",
"build": "tsc",
"clean": "rimraf prod",
"dev": "op run --env-file='./dev.env' -- tsx watch src/index.ts",
"format": "eslint src test --max-warnings 0 --fix",
"lint": "eslint src test --max-warnings 0",
"start": "op run --env-file='./prod.env' -- node prod/index.js",
"test": "vitest run --coverage",
"test:nocov": "MOCHA=true vitest run",
"db:deploy": "prisma db push"
},
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"license": "MIT",
"dependencies": {
"@prisma/client": "6.1.0",
"@tryghost/admin-api": "1.13.12",
"deepl-node": "1.15.0",
"diff": "7.0.0",
"discord.js": "14.16.3",
"dotenv": "16.4.7",
"fastify": "5.2.0",
"graphql-request": "7.1.2",
"highlight.js": "11.11.1",
"mongodb": "6.12.0",
"node-html-to-image": "4.0.0",
"node-schedule": "2.1.1",
"octokit": "4.0.2",
"prettier": "3.4.2",
"string-similarity": "4.0.4",
"strip-ansi": "7.1.0",
"winston": "3.17.0"
},
"devDependencies": {
"@nhcarrigan/eslint-config": "5.0.0",
"@nhcarrigan/typescript-config": "4.0.0",
"@types/diff": "6.0.0",
"@types/node": "22.10.2",
"@types/node-schedule": "2.1.7",
"@types/string-similarity": "4.0.2",
"@vitest/coverage-istanbul": "2.1.8",
"discordjs-testing": "0.2.0",
"eslint": "9.17.0",
"prisma": "6.1.0",
"rimraf": "6.0.1",
"tsx": "4.19.2",
"typescript": "5.7.2",
"vitest": "2.1.8"
}
}