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
54 lines (54 loc) · 1.47 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.47 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
{
"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.1.0",
"gray-matter": "^4.0.3",
"next": "16.2.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"swiper": "^12.1.3",
"toml": "^4.1.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@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.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "6.0.1",
"@vitest/coverage-v8": "4.1.3",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.3",
"jsdom": "^29.0.2",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"vite": "8.0.5",
"vitest": "4.1.3"
},
"pnpm": {
"overrides": {
"tinyexec": "1.0.2",
"vite": "8.0.5"
}
}
}