-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
96 lines (96 loc) · 2.96 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "rrg-freight-services-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint --max-warnings 0",
"analyze": "ENABLE_ANALYZER=1 next build",
"format": "prettier src --write",
"format:check": "prettier src --check",
"db:push": "tsx ./scripts/drop-all-db-tables.ts && drizzle-kit push:pg && tsx ./scripts/db-seed.ts",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@aws-sdk/client-sqs": "^3.556.0",
"@custom-react-hooks/use-permission": "^1.4.19",
"@googlemaps/google-maps-services-js": "^3.4.0",
"@hookform/resolvers": "^3.3.2",
"@lucia-auth/adapter-drizzle": "^1.0.4",
"@next/bundle-analyzer": "^14.2.5",
"@phosphor-icons/react": "^2.1.4",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@react-email/components": "^0.0.19",
"@react-email/render": "0.0.12",
"@react-pdf/renderer": "^3.1.14",
"@simplewebauthn/browser": "^9.0.1",
"@simplewebauthn/server": "^9.0.3",
"@t3-oss/env-nextjs": "^0.7.1",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.44.1",
"@trpc/next": "^10.44.1",
"@trpc/react-query": "^10.44.1",
"@trpc/server": "^10.44.1",
"chart.js": "^4.4.1",
"date-fns": "^3.6.0",
"drizzle-orm": "^0.29.4",
"expo-server-sdk": "^3.9.0",
"firebase": "^10.7.1",
"firebase-admin": "^12.0.0",
"geolib": "^3.3.4",
"leaflet": "^1.9.4",
"leaflet-arrowheads": "^1.4.0",
"lucia": "^3.1.1",
"luxon": "^3.4.4",
"mysql2": "^3.6.5",
"nanoid": "^5.0.4",
"next": "14.2.5",
"pg": "^8.11.5",
"qrcode": "^1.5.3",
"react": "18.3.1",
"react-chartjs-2": "^5.2.0",
"react-date-range": "2.0.0-alpha.4",
"react-dom": "18.3.1",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.49.2",
"react-hot-toast": "^2.4.1",
"react-leaflet": "^4.2.1",
"react-qr-code": "^2.0.12",
"react-responsive-carousel": "^3.2.23",
"react-to-pdf": "^1.0.1",
"resend": "^2.0.0",
"sharp": "^0.33.2",
"superjson": "^2.2.1",
"web-push": "^3.6.7",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.0/xlsx-0.20.0.tgz",
"zod": "^3.22.4"
},
"devDependencies": {
"@simplewebauthn/types": "^9.0.1",
"@types/leaflet": "^1.9.8",
"@types/luxon": "^3.3.7",
"@types/node": "^20",
"@types/pg": "^8.11.6",
"@types/qrcode": "^1.5.5",
"@types/react": "^18",
"@types/react-date-range": "^1.4.9",
"@types/react-dom": "^18",
"@types/web-push": "^3.6.3",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.20.14",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"postcss": "^8",
"prettier": "^3.1.1",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.0",
"typescript": "^5"
},
"type": "module"
}