forked from vantern-org/questbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.23 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
44
45
{
"$schema": "https://json.schemastore.org/package.json",
"name": "my-bot",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "rimraf dist && prisma generate && tsc",
"lint": "prettier --check . && eslint --ext .ts --format=pretty src",
"deploy": "node --env-file-if-exists=.env dist/util/deploy.js",
"format": "prettier --write . && eslint --ext .ts --fix --format=pretty src",
"start": "node --env-file-if-exists=.env dist/index.js",
"dev": "tsc --watch & node --watch --env-file=.env dist/index.js"
},
"dependencies": {
"@discordjs/core": "^2.3.0",
"@prisma/adapter-pg": "^7.7.0",
"@prisma/client": "^7.7.0",
"@types/ms": "^2.1.0",
"discord.js": "^14.24.0",
"dotenv": "^17.4.2",
"prisma": "^7.7.0",
"ms": "^2.1.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^22.18.8",
"eslint": "^9.39.4",
"eslint-config-neon": "^0.2.7",
"eslint-formatter-compact": "^8.40.0",
"eslint-formatter-pretty": "^7.0.0",
"prettier": "^3.6.2",
"rimraf": "^6.1.3",
"typescript": "~5.9.3"
},
"engines": {
"node": ">=22.12.0"
},
"imports": {
"#utils/*": "./dist/util/*",
"#lib/*": "./dist/lib/*",
"#prisma/*": "./dist/generated/prisma/*"
}
}