-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.26 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
{
"name": "rewrite-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"lint-staged": {
"*.{js,jsx,mjs,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss,md,json,yaml,yml}": [
"prettier --write"
]
},
"dependencies": {
"@tanstack/react-query": "^5.101.0",
"@tanstack/react-query-devtools": "^5.101.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"next": "16.2.7",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.80.0",
"react-lottie-player": "^2.1.0",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.2.1",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@storybook/addon-a11y": "^10.4.2",
"@storybook/addon-docs": "^10.4.2",
"@storybook/addon-onboarding": "^10.4.2",
"@storybook/builder-webpack5": "^10.4.2",
"@storybook/nextjs": "^10.4.2",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@tanstack/eslint-plugin-query": "^5.101.0",
"@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",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.7",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-boundaries": "^6.0.2",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-storybook": "^10.4.2",
"husky": "^9.1.7",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"lint-staged": "^17.0.7",
"prettier": "3.8.3",
"storybook": "^10.4.2",
"svgo": "^4.0.1",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}