-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 2.56 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
{
"name": "yamada-colors",
"version": "1.0.0",
"private": true,
"engines": {
"node": "20"
},
"packageManager": "[email protected]+sha256.dae0f7e822c56b20979bb5965e3b73b8bdabb6b8b8ef121da6d857508599ca35",
"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",
"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": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"@yamada-ui/carousel": "^2.1.5",
"@yamada-ui/lucide": "^1.9.0",
"@yamada-ui/react": "1.6.5",
"color-blind": "^0.1.3",
"color-convert": "^2.0.1",
"color2k": "^2.0.3",
"match-sorter": "^6.3.4",
"nearest-color": "^0.4.4",
"next": "^14.2.15",
"next-seo": "^6.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-remove-scroll": "^2.6.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@cspell/eslint-plugin": "^8.14.4",
"@eslint/compat": "^1.2.0",
"@next/eslint-plugin-next": "^14.2.15",
"@octokit/request-error": "^6.1.5",
"@octokit/rest": "^21.0.2",
"@types/color-convert": "^2.0.4",
"@types/nearest-color": "^0.4.1",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@yamada-ui/cli": "^1.2.2",
"chalk": "^5.3.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": "^4.6.2",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.10.0",
"jiti": "^2.3.3",
"lefthook": "^1.7.18",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.7.0"
}
}