-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.26 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": "client-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "npx prettier --write ./src/app",
"swagger-chat": "swagger-typescript-api -t ./src/models/templates -p src/models/swagger/chat.yaml -r -o src/models/chat --modular -d --extract-request-body --extract-response-body --extract-response-error --axios",
"postinstall": "husky",
"lint-staged": "lint-staged",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --config ./.prettierrc --write -u"
]
},
"dependencies": {
"@hookform/resolvers": "^3.9.1",
"@radix-ui/react-switch": "^1.1.1",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cookies-next": "^4.3.0",
"date-fns": "^4.1.0",
"dotenv-cli": "^7.4.2",
"framer-motion": "^11.11.17",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.456.0",
"next": "14.2.14",
"next-auth": "^4.24.8",
"react": "^18",
"react-datepicker": "^7.5.0",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-icons": "^5.3.0",
"react-use": "^17.5.1",
"sharp": "^0.33.5",
"socket.io-client": "^4.8.0",
"swagger-typescript-api": "^13.0.22",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.14",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}