-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.85 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.85 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
{
"name": "26th-web-team-1-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:msw": "MOCKING_ENABLED=true next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:staged": "lint-staged",
"test": "vitest",
"format": "prettier --write .",
"format:check": "prettier --check .",
"commit": "git-cz",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@hookform/resolvers": "^5.1.1",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-dialog": "^1.1.14",
"@tanstack/react-query": "^5.77.0",
"@tanstack/react-query-devtools": "^5.77.0",
"@use-funnel/browser": "^0.0.15",
"@vanilla-extract/css": "^1.17.2",
"@vanilla-extract/dynamic": "^2.1.5",
"@vanilla-extract/recipes": "^0.5.7",
"iron-session": "^8.0.4",
"ky": "1.7.5",
"next": "15.3.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.58.1",
"react-simplikit": "^0.0.40",
"vaul": "^1.1.2",
"zod": "^3.25.75"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.0.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/cz-commitlint": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.52.0",
"@storybook/addon-a11y": "^9.0.15",
"@storybook/addon-docs": "^9.0.15",
"@storybook/nextjs": "^9.0.15",
"@svgr/webpack": "^8.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vanilla-extract/next-plugin": "^2.4.14",
"@vanilla-extract/webpack-plugin": "^2.3.22",
"@vitejs/plugin-react": "^4.5.0",
"@vitest/browser": "^3.1.4",
"@vitest/coverage-v8": "^3.1.4",
"@vitest/eslint-plugin": "^1.2.1",
"chromatic": "^13.0.1",
"commitizen": "^4.3.1",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-playwright": "^2.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^9.0.15",
"eslint-plugin-testing-library": "^7.3.0",
"inquirer": "^12.6.3",
"jsdom": "^26.1.0",
"lefthook": "^1.11.13",
"lint-staged": "^16.0.0",
"msw": "^2.8.4",
"playwright": "^1.52.0",
"prettier": "^3.5.3",
"storybook": "^9.0.15",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.4"
},
"msw": {
"workerDirectory": [
"public"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"packageManager": "pnpm@9.7.0"
}