-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
93 lines (93 loc) · 2.97 KB
/
package.json
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
88
89
90
91
92
93
{
"name": "yamada-components",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=22"
},
"packageManager": "[email protected]",
"scripts": {
"prepare": "lefthook install",
"dev": "next dev",
"build": "next build",
"build:profile": "next build --profile",
"start": "next start",
"lint": "eslint . --max-warnings=0 --cache --flag unstable_ts_config",
"lint:inspect": "pnpm dlx @eslint/config-inspector",
"typecheck": "tsc --noEmit",
"gen:category-group": "plop category-group",
"gen:category": "plop category",
"gen:component": "plop component",
"gen:search": "tsx scripts/search-content",
"gen:contributors": "tsx scripts/contributors",
"format": "prettier --write .",
"format:check": "prettier --check --cache .",
"format:write": "prettier --write --cache .",
"quality": "pnpm format:check && pnpm lint && pnpm typecheck",
"clean": "rimraf .next",
"clean:all": "rimraf .next node_modules"
},
"dependencies": {
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.0",
"@emotion/weak-memoize": "^0.4.0",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"@yamada-ui/calendar": "^1.8.13",
"@yamada-ui/carousel": "^2.1.9",
"@yamada-ui/charts": "^1.5.12",
"@yamada-ui/dropzone": "^1.1.4",
"@yamada-ui/fontawesome": "^1.0.52",
"@yamada-ui/lucide": "^1.10.2",
"@yamada-ui/markdown": "^1.1.0",
"@yamada-ui/react": "^1.7.3",
"@yamada-ui/table": "^1.3.10",
"jszip": "^3.10.1",
"match-sorter": "^8.0.0",
"next": "^15.1.0",
"next-seo": "^6.6.0",
"prism-react-renderer": "^2.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"scroll-into-view-if-needed": "^3.1.0"
},
"devDependencies": {
"@clack/prompts": "^0.8.2",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@cspell/eslint-plugin": "^8.14.4",
"@eslint/compat": "^1.2.0",
"@next/eslint-plugin-next": "^15.1.0",
"@octokit/request-error": "^6.1.5",
"@octokit/rest": "^21.0.2",
"@types/node": "^22.7.4",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@yamada-ui/cli": "^1.2.3",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-perfectionist": "^3.8.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unused-imports": "^4.1.4",
"glob": "^11.0.0",
"globals": "^15.10.0",
"jiti": "^2.3.3",
"lefthook": "^1.7.17",
"plop": "^4.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
}
}