forked from hiero-ledger/hiero-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.6 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
{
"name": "nextjs",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"sync:repo-stats": "node src/scripts/sync-repo-stats.mjs",
"dev": "pnpm sync:repo-stats && next dev",
"build": "pnpm sync:repo-stats && next build",
"start": "next start",
"test": "vitest run",
"coverage": "vitest run --coverage",
"update-snap": "vitest run --update",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json}\""
},
"dependencies": {
"date-fns": "^4.4.0",
"gray-matter": "^4.0.3",
"next": "16.2.6",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"swiper": "^12.2.0",
"toml": "^4.1.1"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^5.15.11",
"@tailwindcss/postcss": "^4.3.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "6.0.2",
"@vitest/coverage-v8": "4.1.3",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.7",
"fast-check": "4.8.0",
"jsdom": "^29.1.1",
"prettier": "^3.8.3",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vite": "8.0.5",
"vitest": "4.1.3"
},
"pnpm": {
"overrides": {
"postcss": "^8.5.10",
"tinyexec": "1.0.2",
"vite": "8.0.5"
}
}
}