-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.43 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.43 KB
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
{
"name": "omni-bot",
"version": "0.1.0",
"description": "",
"main": "./dist/index.js",
"private": true,
"scripts": {
"build": "pnpm prisma:generate && tsc",
"dev": "node --env-file=.env ./bootstrap/validate-env-vars.mjs && tsx src/index.ts",
"start": "node ./bootstrap/validate-env-vars.mjs && node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky || true",
"format": "prettier . --write --ignore-unknown && oxlint --fix --fix-suggestions",
"prisma:consolidate": "tsx scripts/consolidate-schema.ts",
"prisma:generate": "pnpm prisma:consolidate && prisma generate --no-hints",
"prisma:migrate": "pnpm prisma:consolidate && prisma migrate dev",
"prisma:studio": "pnpm prisma:consolidate && prisma studio --no-hints"
},
"keywords": [],
"author": "",
"license": "GPL-3.0-or-later",
"packageManager": "pnpm@10.22.0",
"type": "module",
"dependencies": {
"@prisma/client": "6.16.2",
"discord.js": "^14.21.0",
"prisma": "^6.14.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/node": "^22.17.2",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"oxlint": "^1.12.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}