-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.78 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.78 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
51
52
53
54
55
56
57
58
59
60
{
"name": "mlbb-platform",
"version": "1.0.0",
"description": "MLBB Platform - Gaming Community Platform with AI Chatbot",
"private": true,
"scripts": {
"dev": "concurrently --kill-others \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:windows": "start \"Backend\" cmd /k \"cd backend && npm run dev\" && start \"Frontend\" cmd /k \"cd frontend && npm run dev\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"start": "cd backend && npm start",
"start:frontend": "cd frontend && npm run preview",
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"lint": "cd frontend && npm run lint",
"clean": "rimraf backend/node_modules frontend/node_modules node_modules",
"proxy": "node proxy.js",
"test:backend": "cd backend && node src/server.js",
"test:frontend": "cd frontend && npm run dev",
"vercel-build": "npm run install:all && npm run build"
},
"devDependencies": {
"concurrently": "^8.2.2",
"rimraf": "^5.0.5"
},
"workspaces": [
"frontend",
"backend"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"keywords": [
"mlbb",
"mobile-legends",
"gaming",
"esports",
"react",
"node.js",
"ai-chatbot"
],
"author": "MLBB Platform Team",
"license": "MIT",
"dependencies": {
"axios": "^1.9.0",
"body-parser": "^2.2.0",
"cheerio": "^1.0.0",
"cors": "^2.8.5",
"csv-parser": "^3.2.0",
"express": "^5.1.0",
"gsap": "^3.13.0",
"jsonwebtoken": "^9.0.2",
"node-fetch": "^3.3.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.6.2"
}
}