-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.76 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
92
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=chpt_426798b9b815aba",
"mock": "npx tsx watch ./src/mocks/http.ts"
},
"dependencies": {
"@auth/core": "^0.28.1",
"@faker-js/faker": "^8.4.1",
"@nextui-org/react": "^2.4.6",
"@nextui-org/skeleton": "^2.0.31",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/themes": "^2.0.3",
"@reduxjs/toolkit": "^2.2.1",
"@svgr/webpack": "^8.1.0",
"@tanstack/react-query": "^5.29.0",
"@types/cors": "^2.8.17",
"@types/react-redux": "^7.1.33",
"axios": "^1.6.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"embla-carousel-react": "^8.5.1",
"framer-motion": "^11.3.24",
"js-cookie": "^3.0.5",
"lucide-react": "^0.468.0",
"msw": "^2.2.13",
"next": "14.1.3",
"next-auth": "^5.0.0-beta.16",
"next-redux-wrapper": "^8.1.0",
"react": "^18",
"react-dom": "^18",
"react-redux": "^9.1.0",
"redux": "^5.0.1",
"shadcn-ui": "^0.9.4",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@chromatic-com/storybook": "1.2.18",
"@mswjs/http-middleware": "^0.10.0",
"@next/eslint-plugin-next": "^14.1.3",
"@storybook/addon-essentials": "8.0.0-rc.5",
"@storybook/addon-interactions": "8.0.0-rc.5",
"@storybook/addon-links": "8.0.0-rc.5",
"@storybook/addon-onboarding": "8.0.0-rc.5",
"@storybook/blocks": "8.0.0-rc.5",
"@storybook/nextjs": "8.0.0-rc.5",
"@storybook/react": "8.0.0-rc.5",
"@storybook/test": "8.0.0-rc.5",
"@tanstack/react-query-devtools": "5",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"autoprefixer": "^10.4.20",
"chromatic": "^11.0.8",
"cors": "^2.8.5",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"express": "^4.19.2",
"postcss": "^8.4.49",
"prettier": "^3.2.5",
"sb": "^8.0.0",
"storybook": "8.0.0-rc.5",
"tailwindcss": "^3.4.16",
"typescript": "^5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}