-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.77 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
{
"name": "bookscape-front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"typegen": "next typegen",
"type-check": "tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"format": "prettier --write src",
"format:check": "prettier --check src",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest",
"svgo:out": "rm -rf .svgo-out && svgo --config svgo.config.mjs -rf src/shared/assets -o .svgo-out",
"svgo:write": "svgo --config svgo.config.mjs -rf src/shared/assets -o src/shared/assets"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@sentry/nextjs": "^10",
"@tanstack/react-query": "^5.99.2",
"@tanstack/react-query-devtools": "^5.99.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"embla-carousel-autoplay": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"heic2any": "^0.0.4",
"next": "16.2.4",
"react": "19.2.4",
"react-day-picker": "^9.14.0",
"react-dom": "19.2.4",
"react-hook-form": "^7.73.1",
"react-lottie-player": "^2.1.0",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.1.2",
"@commitlint/cli": "^20.5.0",
"@storybook/addon-a11y": "^10.3.5",
"@storybook/addon-docs": "^10.3.5",
"@storybook/addon-onboarding": "^10.3.5",
"@storybook/nextjs": "^10.3.5",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@tanstack/eslint-plugin-query": "^5.99.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.39",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"chromatic": "^16.4.0",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-storybook": "^10.3.5",
"husky": "^9.1.7",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"lint-staged": "^16.4.0",
"playwright": "^1.59.1",
"prettier": "3.8.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"storybook": "^10.3.5",
"svgo": "^4.0.0",
"tailwindcss": "^4",
"typescript": "^5"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,md,html}": [
"prettier --write"
]
},
"packageManager": "pnpm@10.33.0"
}