-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.49 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.49 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "nextjs-boilerplate",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check": "pnpm lint && pnpm fmt && pnpm knip",
"fix": "pnpm lint:fix && pnpm fmt:fix",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"lint:workflows": "actionlint -color && zizmor .github/",
"fmt": "oxfmt --check .",
"fmt:fix": "oxfmt --write .",
"knip": "knip --strict",
"test": "vitest run",
"test:unit": "vitest run --project=unit",
"test:update": "vitest run --update",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"analyze": "next experimental-analyze",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"generate-api": "pnpm dlx @openapitools/openapi-generator-cli generate -i openapi.yml -g typescript-fetch -o ./src/api/openapi -c openapiconfig.json --openapi-normalizer SET_TAGS_FOR_ALL_OPERATIONS=default",
"generate-api:clean": "rm -rf src/api/openapi && pnpm generate-api",
"generate-mock": "msw-auto-mock openapi.yml -o ./src/mocks --typescript --base-url https://jsonplaceholder.typicode.com && sed -i '' 's|from \"@faker-js/faker\"|from \"@faker-js/faker/locale/ja\"|' ./src/mocks/handlers.ts"
},
"dependencies": {
"@hookform/resolvers": "5.2.2",
"@radix-ui/react-icons": "1.3.2",
"@radix-ui/react-presence": "1.1.5",
"@radix-ui/react-slot": "1.2.4",
"@tanstack/react-query": "5.99.0",
"@tanstack/react-query-devtools": "5.99.0",
"next": "16.2.4",
"nuqs": "2.8.9",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-error-boundary": "6.1.1",
"react-hook-form": "8.0.0-beta.1",
"sonner": "2.0.7",
"tailwind-merge": "3.5.0",
"tailwind-variants": "3.2.2",
"zod": "4.3.6"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@faker-js/faker": "10.4.0",
"@next/env": "16.2.4",
"@rolldown/plugin-babel": "0.2.3",
"@storybook/addon-a11y": "10.3.5",
"@storybook/addon-docs": "10.3.5",
"@storybook/addon-mcp": "0.6.0",
"@storybook/addon-vitest": "10.3.5",
"@storybook/nextjs-vite": "10.3.5",
"@tailwindcss/postcss": "4.2.2",
"@tanstack/eslint-plugin-query": "5.99.0",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/babel__core": "7.20.5",
"@types/node": "24.12.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"@vitest/browser-playwright": "4.1.4",
"@vitest/coverage-v8": "4.1.4",
"axe-core": "4.11.3",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "10.2.1",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-storybook": "10.3.5",
"happy-dom": "20.9.0",
"jest-extended": "7.0.0",
"knip": "6.4.1",
"msw": "2.13.4",
"msw-auto-mock": "0.32.0",
"msw-storybook-addon": "2.0.7",
"oxfmt": "0.46.0",
"oxlint": "1.61.0",
"oxlint-tsgolint": "0.21.1",
"playwright": "1.59.1",
"remark-gfm": "4.0.1",
"storybook": "10.3.5",
"tailwindcss": "4.2.2",
"typescript": "6.0.3",
"vite": "8.0.8",
"vitest": "4.1.4"
},
"engines": {
"node": ">=24"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"react-hook-form"
]
},
"onlyBuiltDependencies": [
"esbuild",
"msw",
"sharp"
]
},
"msw": {
"workerDirectory": "public"
}
}