-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.91 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
{
"name": "yamada-colors",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "next dev",
"build": "next build",
"build:profile": "next build --profile",
"start": "next start",
"lint": "next lint",
"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",
"observe:pr": "tsx scripts/observe-pull-requests"
},
"dependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"@yamada-ui/carousel": "^1.0.29",
"@yamada-ui/react": "1.3.12",
"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.3",
"next-seo": "^6.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-remove-scroll": "^2.5.9"
},
"devDependencies": {
"@octokit/request-error": "^6.1.1",
"@octokit/rest": "^20.1.0",
"@types/color-convert": "^2.0.3",
"@types/nearest-color": "^0.4.1",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@yamada-ui/cli": "^1.0.5",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
}
}