-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) Β· 2.13 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"format:fix": "prettier --write",
"server": "npx tsx watch ./src/entities/mock/api/http.ts"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run format:fix"
]
},
"dependencies": {
"@ai-sdk/openai": "^0.0.16",
"@auth/core": "0.27",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@faker-js/faker": "^8.4.1",
"@hookform/resolvers": "^3.4.2",
"@lottiefiles/react-lottie-player": "^3.5.3",
"@mswjs/http-middleware": "^0.10.1",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"@mui/material-nextjs": "^5.15.11",
"@tanstack/react-query": "^5.29.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"ai": "^3.1.15",
"classnames": "^2.5.1",
"cookie": "^0.6.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"framer-motion": "^11.1.7",
"lucide-react": "^0.365.0",
"msw": "2.1",
"next": "14.2.1",
"next-auth": "5.0.0-beta.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.5",
"react-intersection-observer": "^9.10.0",
"react-markdown": "^9.0.1",
"react-toastify": "^10.0.5",
"react-youtube": "^10.1.0",
"sass": "^1.75.0",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.1.4",
"@tanstack/eslint-plugin-query": "^5.28.11",
"@types/cookie": "^0.6.0",
"@types/node": "^20.12.5",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.4.4"
},
"msw": {
"workerDirectory": [
"public"
]
}
}