-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.14 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.14 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
{
"name": "nextjs-boilerplate",
"private": true,
"engines": {
"node": "24.12.0"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "pnpm lint:eslint && pnpm lint:biome",
"lint:eslint": "eslint --fix",
"lint:biome": "biome check --write",
"lint:biome:unsafe": "pnpm lint:biome --unsafe",
"lint:knip": "knip --cache && knip --strict --cache",
"check-types": "tsc --noEmit",
"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",
"chromatic": "pnpm dlx chromatic",
"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"
},
"dependencies": {
"@hookform/resolvers": "5.2.2",
"@lukemorales/query-key-factory": "1.3.4",
"@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.90.16",
"@tanstack/react-query-devtools": "5.91.2",
"es-toolkit": "1.43.0",
"hono": "4.11.3",
"next": "16.1.1",
"nuqs": "2.8.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-error-boundary": "6.0.2",
"react-hook-form": "7.70.0",
"tailwind-merge": "3.4.0",
"tailwind-variants": "3.2.2",
"zod": "4.3.5"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@faker-js/faker": "10.2.0",
"@next/env": "16.1.1",
"@next/eslint-plugin-next": "16.1.1",
"@storybook/addon-a11y": "10.1.11",
"@storybook/addon-docs": "10.1.11",
"@storybook/addon-vitest": "10.1.11",
"@storybook/nextjs-vite": "10.1.11",
"@tailwindcss/postcss": "4.1.18",
"@tanstack/eslint-plugin-query": "5.91.2",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.1",
"@testing-library/user-event": "14.6.1",
"@types/node": "24.10.4",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.2",
"@vitest/browser": "4.0.16",
"@vitest/browser-playwright": "4.0.16",
"@vitest/coverage-v8": "4.0.16",
"@vitest/eslint-plugin": "1.6.5",
"axe-core": "4.11.1",
"babel-plugin-react-compiler": "1.0.0",
"chromatic": "13.3.5",
"eslint": "9.39.2",
"eslint-config-next": "16.1.1",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-storybook": "10.1.11",
"jest-extended": "7.0.0",
"jsdom": "27.4.0",
"knip": "5.80.0",
"msw": "2.12.7",
"msw-storybook-addon": "2.0.6",
"playwright": "1.57.0",
"storybook": "10.1.11",
"tailwindcss": "4.1.18",
"type-fest": "5.3.1",
"typescript": "5.9.3",
"vitest": "4.0.16"
},
"msw": {
"workerDirectory": "./public"
}
}