-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.79 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.79 KB
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
{
"name": "juulabel-front",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "cross-env NODE_ENV=production next build",
"start": "cross-env NODE_ENV=production PORT=5001 next start",
"start:qa": "cross-env NODE_ENV=production PORT=5005 next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check-code": "prettier --check .",
"format": "prettier --write ."
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@next/third-parties": "^15.3.1",
"@tanstack/react-query": "^5.67.2",
"@tanstack/react-query-devtools": "^5.67.2",
"axios": "^1.8.2",
"chart.js": "^4.4.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"event-source-polyfill": "^1.0.31",
"framer-motion": "^12.4.10",
"next": "14.2.13",
"nookies": "^2.5.2",
"react": "^18.3.1",
"react-chartjs-2": "^5.3.0",
"react-cookie": "^7.2.2",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-icons": "^5.5.0",
"react-loading-skeleton": "^3.5.0",
"react-toastify": "^10.0.6",
"react-tooltip": "^5.28.0",
"sharp": "^0.33.5",
"swiper": "^11.2.5",
"tailwind-merge": "^2.6.0",
"tailwind-scrollbar-hide": "^1.3.1",
"uuid": "^11.1.0",
"workbox-window": "^7.3.0",
"yup": "^1.6.1",
"zustand": "^4.5.6"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@next/eslint-plugin-next": "^15.3.2",
"@svgr/webpack": "^8.1.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/event-source-polyfill": "^1.0.5",
"@types/node": "^20.17.24",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"babel-loader": "^10.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"globals": "^16.1.0",
"msw": "^2.7.3",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.2",
"typescript-eslint": "^8.32.0",
"workbox-webpack-plugin": "^7.3.0"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss",
"@trivago/prettier-plugin-sort-imports"
],
"importOrder": [
"<THIRD_PARTY_MODULES>",
"^@/app/(.*)$",
"^@/_components/(.*)$",
"^@/_common/(.*)$",
"^@/_lib/(.*)$",
"^@/_store/(.*)$",
"^@/_types/(.*)$",
"^@/_utils/(.*)$",
"^@/(.*)$",
"^[./]"
],
"tailwindConfig": "./tailwind.config.ts"
},
"msw": {
"workerDirectory": [
"public"
]
}
}