-
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.2 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.2 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
{
"name": "hemeratcg",
"version": "1.0.0",
"description": "A community-driven website for Pokémon TCG Expanded format deck guides and resources.",
"main": "next.config.mjs",
"packageManager": "bun@1.3.10",
"scripts": {
"sync:public": "bun scripts/sync-public.mjs",
"new:deck": "bun scripts/new-deck.mjs",
"predev": "bun run sync:public",
"dev": "next dev",
"prebuild": "bun run sync:public",
"build": "next build",
"start": "next start",
"export": "next build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xHemera/HemeraTCG.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/xHemera/HemeraTCG/issues"
},
"homepage": "https://github.com/xHemera/HemeraTCG#readme",
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"autoprefixer": "^10.4.23",
"eslint": "^9.38.0",
"eslint-config-next": "^16.0.0",
"gray-matter": "^4.0.3",
"next": "^16.0.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.19"
},
"dependencies": {
"marked": "^17.0.1",
"next-mdx-remote": "^6.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"remark-gfm": "^4.0.1"
}
}