-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.74 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "13th-7team-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NEXT_PUBLIC_API_MOCKING=disable next dev",
"build": "next build",
"start": "node server.js",
"lint": "next lint",
"prepare": "husky install",
"sb": "storybook dev -p 6006",
"build-storybook": "storybook build",
"msw": "NEXT_PUBLIC_API_MOCKING=enable next dev"
},
"dependencies": {
"@faker-js/faker": "^8.0.2",
"@sentry/nextjs": "^7.57.0",
"@sentry/utils": "^7.57.0",
"@tanstack/react-query": "^4.29.7",
"@tanstack/react-query-devtools": "^4.29.7",
"@types/event-source-polyfill": "^1.0.1",
"@types/node": "20.2.3",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"axios": "^1.4.0",
"chromatic": "^6.18.0",
"eslint-config-next": "13.4.3",
"event-source-polyfill": "^1.0.31",
"framer-motion": "^10.12.16",
"lodash": "^4.17.21",
"msw": "^1.2.1",
"next": "13.4.3",
"next-auth": "^4.22.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.10",
"react-hook-form": "^7.43.9",
"react-intersection-observer": "^9.4.4",
"server-only": "^0.0.1",
"swiper": "^9.3.2",
"tailwind-merge": "^1.13.0",
"tailwindcss": "3.3.2",
"zustand": "^4.3.8"
},
"devDependencies": {
"@hookform/resolvers": "^3.1.0",
"@storybook/addon-essentials": "^7.0.14",
"@storybook/addon-interactions": "^7.0.14",
"@storybook/addon-links": "^7.0.14",
"@storybook/addon-styling": "^1.0.8",
"@storybook/addon-viewport": "^7.0.18",
"@storybook/blocks": "^7.0.14",
"@storybook/nextjs": "^7.0.14",
"@storybook/react": "^7.0.14",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/lodash": "^4.14.195",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"autoprefixer": "^10.4.14",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.12",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"msw-storybook-addon": "^1.8.0",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"storybook": "^7.0.14",
"storybook-addon-cookie": "^3.0.1",
"typescript": "5.0.4",
"yup": "^1.1.1"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --ext .tsx --ext .ts ./src --fix"
],
"src/**": [
"prettier --write \"**/*.{js,jsx,ts,tsx,md,css}\""
]
},
"msw": {
"workerDirectory": "public"
},
"readme": "ERROR: No README data found!",
"_id": "[email protected]"
}