-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.37 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.37 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
46
47
48
49
50
{
"name": "minusbot",
"version": "1.0.0",
"type": "module",
"scripts": {
"install:all": "bun install && cd web && bun install",
"dev:client": "cd web && bun run dev",
"dev": "NODE_ENV=dev bun run --watch src/index.ts",
"build:client": "cd web && bun run build",
"build": "bun run build:client",
"start": "NODE_ENV=prod bun run src/index.ts",
"skills:install": "bun run scripts/install-skills.ts",
"root:reset": "bun run scripts/regenerate-root.ts",
"test": "bun test"
},
"private": true,
"dependencies": {
"@types/bcryptjs": "^3.0.0",
"@types/cors": "^2.8.19",
"@types/dockerode": "^4.0.1",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/ws": "^8.18.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.6",
"discord.js": "^14.25.1",
"dockerode": "^4.0.9",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"multer": "^2.0.2",
"semver": "^7.7.4",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"telegraf": "^4.16.3",
"ws": "^8.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@types/react-router-dom": "^5.3.3",
"@types/semver": "^7.7.1",
"@types/uuid": "^10.0.0"
},
"peerDependencies": {
"typescript": "^5"
}
}