-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.4 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.4 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
101
102
103
104
105
106
107
108
109
110
{
"name": "causw_fe_v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint--fix": "eslint --fix src/**/*.{js,jsx,ts,tsx}",
"format": "prettier --write \"**/*.{js,ts,jsx,tsx,json,css,html}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"generate:sitemap": "next-sitemap",
"ts:check": "tsc --noEmit",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --cache --write"
]
},
"dependencies": {
"@capacitor/android": "^7.4.3",
"@capacitor/app": "^7.0.2",
"@capacitor/assets": "^3.0.5",
"@capacitor/core": "^7.4.2",
"@capacitor/ios": "^7.4.2",
"@capacitor/push-notifications": "^7.0.2",
"@capacitor/status-bar": "^7.0.1",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@hookform/resolvers": "^5.0.1",
"@ionic/react": "^8.7.3",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@sentry/nextjs": "^10.23.0",
"@tanstack/react-query": "^5.36.0",
"@tanstack/react-query-devtools": "^5.87.3",
"@types/dompurify": "^3.0.5",
"@types/js-cookie": "^3.0.6",
"@types/jsdom": "^21.1.7",
"axios": "^1.6.8",
"capacitor-secure-storage-plugin": "^0.11.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.2.6",
"firebase": "^11.3.0",
"js-cookie": "^3.0.5",
"jsdom": "^26.1.0",
"lucide-react": "^0.510.0",
"next": "14.2.35",
"next-sitemap": "^4.2.3",
"qs": "^6.14.0",
"react": "^18",
"react-csv": "^2.2.2",
"react-day-picker": "^9.8.0",
"react-dom": "^18",
"react-hook-form": "^7.51.4",
"react-hot-toast": "^2.5.2",
"react-icons": "^5.5.0",
"swiper": "^11.1.5",
"tailwind-merge": "^3.3.0",
"zod": "^3.24.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@capacitor/cli": "^7.4.2",
"@iconify/json": "^2.2.226",
"@iconify/tailwind": "^1.1.1",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.1.8",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^20",
"@types/qs": "^6.14.0",
"@types/react": "^18",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"react-spinners": "^0.14.1",
"recharts": "^2.12.7",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss": "^4.1.8",
"tw-animate-css": "^1.3.2",
"typescript": "^5"
}
}