-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) ยท 2.17 KB
/
package.json
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
{
"name": "you-and-my-fu-bao",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "husky install",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@babel/core": "^7.23.6",
"@emotion/babel-preset-css-prop": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.2",
"@tanstack/react-query": "^5.12.2",
"@tanstack/react-query-devtools": "^5.15.0",
"axios": "^1.6.2",
"cookies-next": "^4.1.0",
"framer-motion": "^10.16.16",
"html2canvas": "^1.4.1",
"next": "14.0.4",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.48.2",
"react-query": "^3.39.3",
"scratchable": "^0.0.4",
"storybook": "^7.6.6",
"swiper": "^11.0.5",
"vaul": "^0.8.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.6",
"@storybook/addon-interactions": "^7.6.6",
"@storybook/addon-links": "^7.6.6",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/addon-themes": "^7.6.6",
"@storybook/blocks": "^7.6.6",
"@storybook/nextjs": "^7.6.6",
"@storybook/react": "^7.6.6",
"@storybook/test": "^7.6.6",
"@svgr/webpack": "^8.1.0",
"@types/babel__core": "^7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-datepicker": "^4",
"@types/react-dom": "^18",
"@types/react-slick": "^0",
"@types/slick-carousel": "^1",
"@types/uuid": "^9",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"typescript": "^5",
"webpack": "^5.89.0"
},
"packageManager": "[email protected]",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}