-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 3.07 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
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "jobseeker_project",
"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",
"test": "react-scripts test",
"test:coverage": "react-scripts test --watchAll=false --coverage"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@heroicons/react": "^2.1.5",
"@hookform/resolvers": "^3.9.0",
"@mui/material": "^6.1.8",
"@prisma/client": "^5.16.1",
"@react-spring/web": "^9.7.5",
"@sentry/nextjs": "^8.13.0",
"@storybook/test": "^8.1.11",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/forms": "^0.5.7",
"@tanstack/react-query": "^5.56.2",
"@tanstack/react-query-devtools": "^5.56.2",
"@types/react-modal": "^3.16.3",
"@types/react-slider": "^1.3.6",
"@types/react-syntax-highlighter": "^15.5.13",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"cookies-next": "^4.2.1",
"dotenv": "^16.4.5",
"framer-motion": "^11.11.11",
"install": "^0.13.0",
"iron-session": "^8.0.2",
"jotai": "^2.11.0",
"js-cookie": "^3.0.5",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"lucide-react": "^0.446.0",
"next": "^14.2.15",
"npm": "^10.8.3",
"prisma": "^5.16.1",
"react": "^18",
"react-cookie": "^7.2.2",
"react-dom": "^18",
"react-hook-form": "^7.52.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0",
"react-markdown": "^9.0.1",
"react-modal": "^3.16.1",
"react-paginate": "^8.2.0",
"react-slick": "^0.30.2",
"react-slider": "^2.0.6",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^4.0.0",
"slick-carousel": "^1.8.1",
"tailwind-scrollbar-hide": "^1.1.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.0",
"@prisma/client": "^5.16.2",
"@sentry/nextjs": "^8.17.0",
"@storybook/addon-essentials": "^8.1.11",
"@storybook/addon-interactions": "^8.1.11",
"@storybook/addon-links": "^8.1.11",
"@storybook/addon-onboarding": "^8.1.11",
"@storybook/blocks": "^8.1.11",
"@storybook/nextjs": "^8.1.11",
"@storybook/react": "^8.1.11",
"@types/bcrypt": "^5.0.2",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.13",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-slick": "^0.23.13",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"msw": "^2.6.8",
"postcss": "^8",
"remark-gfm": "^4.0.0",
"storybook": "^8.1.11",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}