-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.57 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "mlbb",
"version": "1.0.0",
"private": true,
"description": "Mobile Legends: Bang Bang knowledge base in English, French, Italian and Spanish: heroes, builds, counters, tier lists, patch notes and tools.",
"author": "achedon12 <82544800+achedon12@users.noreply.github.com> (https://github.com/achedon12)",
"license": "MIT",
"homepage": "https://mlbbdex.com",
"repository": {
"type": "git",
"url": "git+https://github.com/achedon12/mlbb.git"
},
"bugs": {
"url": "https://github.com/achedon12/mlbb/issues"
},
"keywords": [
"mobile-legends",
"mlbb",
"moba",
"tier-list",
"game-data",
"nextjs",
"typescript",
"i18n"
],
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "node scripts/demarrer.mjs",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"sync": "node scripts/sync.mjs",
"sync:evolution": "node scripts/sync.mjs --evolution",
"sync:events": "node scripts/events.mjs",
"sync:advance-server": "node scripts/advance-server.mjs",
"sync:esports": "node scripts/esports.mjs",
"traduire": "node scripts/traduire-messages.mjs && node scripts/traduire-donnees.mjs && node scripts/traduire-articles.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"veille": "node scripts/veille.mjs",
"traduire:messages": "node scripts/traduire-messages.mjs",
"traduire:donnees": "node scripts/traduire-donnees.mjs",
"traduire:articles": "node scripts/traduire-articles.mjs"
},
"dependencies": {
"clsx": "^2.1.1",
"fast-xml-parser": "^5.11.1",
"gray-matter": "^4.0.3",
"lucide-react": "^1.41.0",
"marked": "^15.0.4",
"next": "^16.0.0",
"node-html-parser": "^9.0.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sanitize-html": "^2.17.7",
"tailwind-merge": "^2.5.4",
"web-push": "^3.6.7",
"zod": "^4.5.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@playwright/test": "^1.63.0",
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^26.4.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/sanitize-html": "^2.16.1",
"@types/web-push": "^3.6.4",
"@vitest/coverage-v8": "^5.0.0",
"eslint": "^9.14.0",
"eslint-config-next": "^16.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.6.3",
"vitest": "^5.0.0"
},
"browserslist": [
"chrome >= 111",
"edge >= 111",
"firefox >= 128",
"safari >= 16.4"
]
}