-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.33 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 4.33 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "iaircon-app",
"private": true,
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --cache",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix --cache",
"lint:imports": "eslint . --ext .ts,.tsx,.js,.jsx --fix --cache --rule \"import/order: error\"",
"lint:types": "tsc --noEmit",
"lint:all": "npm run lint:types && npm run lint",
"lint:strict": "eslint . --ext .ts,.tsx,.js,.jsx --max-warnings 0",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,css,scss}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,css,scss}\"",
"analyze-migration": "tsx scripts/migration/analyze.ts",
"preview": "vite preview",
"server": "tsx watch src/server.ts",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@googlemaps/js-api-loader": "^1.16.2",
"@headlessui/react": "^1.7.17",
"@hello-pangea/dnd": "^16.3.0",
"@hookform/resolvers": "^3.3.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.1.6",
"@react-google-maps/api": "^2.19.2",
"@reduxjs/toolkit": "^2.5.0",
"@stripe/react-stripe-js": "^3.0.0",
"@stripe/stripe-js": "^5.2.0",
"@supabase/supabase-js": "^2.47.10",
"@tanstack/react-query": "^5.62.3",
"@types/express-rate-limit": "^5.1.3",
"@types/pdfkit": "^0.13.8",
"@types/redux-persist": "^4.0.0",
"@types/uuid": "^10.0.0",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"axios": "^1.7.9",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"date-fns": "^3.0.6",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"firebase": "^11.0.2",
"framer-motion": "^11.15.0",
"jszip": "^3.10.1",
"lucide-react": "^0.294.0",
"pdf-lib": "^1.17.1",
"pdfkit": "^0.15.2",
"react": "^18.3.1",
"react-countup": "^6.5.3",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2",
"react-hook-form": "^7.49.2",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.4.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.1.1",
"redux-persist": "^6.0.0",
"sonner": "^1.7.1",
"stream-browserify": "^3.0.0",
"stripe": "^17.5.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.3",
"workbox-precaching": "^7.3.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@prisma/client": "^6.1.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.1",
"@types/cors": "^2.8.17",
"@types/dompurify": "^3.0.5",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.17.10",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-virtualized": "^9.22.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"autoprefixer": "^10.4.16",
"cors": "^2.8.5",
"dompurify": "^3.2.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"globals": "^15.14.0",
"happy-dom": "^15.11.7",
"jsdom": "^23.2.0",
"postcss": "^8.4.31",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.5.7",
"prisma": "^6.1.0",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.6.1",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.4.0",
"vite-plugin-pwa": "^0.21.1",
"vitest": "^1.6.0"
},
"main": "eslint.config.js",
"keywords": [],
"author": "",
"license": "ISC",
"directories": {
"doc": "docs"
},
"description": ""
}