-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 4.37 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 4.37 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
{
"name": "reboot",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"test": "jest --passWithNoTests",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"start": "next start",
"lint": "eslint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky",
"commit": "cz",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"dependencies": {
"@headlessui/react": "^2.2.9",
"@hookform/resolvers": "^5.2.2",
"@sentry/nextjs": "^10.47.0",
"@smastrom/react-rating": "^1.5.0",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query": "^5.90.21",
"@tiptap/core": "^3.21.0",
"@tiptap/extension-bullet-list": "^3.22.0",
"@tiptap/extension-image": "^3.21.0",
"@tiptap/extension-list-item": "^3.22.0",
"@tiptap/extension-text-align": "^3.21.0",
"@tiptap/extension-underline": "^3.21.0",
"@tiptap/pm": "^3.21.0",
"@tiptap/react": "^3.21.0",
"@tiptap/starter-kit": "^3.21.0",
"class-variance-authority": "^0.7.1",
"dayjs": "^1.11.20",
"lucide-react": "^1.7.0",
"motion": "^12.35.1",
"next": "15.5.12",
"react": "19.1.0",
"react-day-picker": "^9.14.0",
"react-dom": "19.1.0",
"react-error-boundary": "^6.1.1",
"react-hook-form": "^7.71.2",
"react-loading-skeleton": "^3.5.0",
"react-slot-counter": "^3.3.3",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.1",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@eslint/eslintrc": "^3",
"@storybook/addon-a11y": "^10.2.16",
"@storybook/addon-docs": "^10.2.16",
"@storybook/addon-onboarding": "^10.2.16",
"@storybook/addon-vitest": "^10.2.16",
"@storybook/nextjs-vite": "^10.2.16",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/google.accounts": "^0.0.18",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"clsx": "^2.1.1",
"commitizen": "^4.3.1",
"cz-customizable": "^7.5.1",
"eslint": "^9",
"eslint-config-next": "15.5.12",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-storybook": "^10.2.16",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.3.0",
"jest-fixed-jsdom": "^0.0.11",
"lint-staged": "^16.3.3",
"msw": "^2.12.10",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"storybook": "^10.2.16",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"config": {
"commitizen": {
"path": "cz-customizable"
}
},
"msw": {
"workerDirectory": [
"public"
]
}
}