forked from jondeaves/venom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "venom",
"version": "0.0.1",
"description": "",
"scripts": {
"start": "tsx src/index.ts",
"dev": "nodemon --exec tsx src/index.ts",
"bot": "src/scripts/systemctl.zsh bot",
"db": "src/scripts/systemctl.zsh db",
"logs": "pnpm bot logs",
"dblogs": "pnpm db logs",
"build": "tsc && tsc-alias",
"gen": "simple-scaffold -c scaffold.config.js -k",
"install-services": "src/scripts/install-services.zsh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/jsdom": "^21.1.7",
"csv": "^6.3.10",
"jsdom": "^24.1.1",
"nodemon": "^3.1.4",
"simple-scaffold": "^2.2.1",
"tsc-alias": "^1.8.10",
"tsx": "^4.16.5",
"typescript-eslint": "^8.0.0"
},
"dependencies": {
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"megahal.js": "^1.0.3",
"mongodb": "^6.8.0",
"nanoid": "^5.0.7",
"winston": "^3.13.1"
},
"nodemonConfig": {
"ignore": [
"build/**"
]
}
}