-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.23 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
{
"name": "dodgetracker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"start:websockets": "ts-node --project src/websockets/tsconfig.json src/websockets/server.ts",
"lint": "next lint"
},
"dependencies": {
"@next/third-parties": "^14.1.0",
"@nextui-org/kbd": "^2.0.29",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@tanstack/react-query": "^5.40.0",
"@uidotdev/usehooks": "^2.4.1",
"@vercel/analytics": "^1.2.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"date-fns": "^3.3.1",
"dotenv": "^16.4.4",
"drizzle-orm": "^0.32.0",
"fastest-levenshtein": "^1.0.16",
"lucide-react": "^0.343.0",
"mysql2": "^3.9.7",
"next": "^14.2.5",
"nuqs": "^1.17.4",
"pg": "^8.12.0",
"posthog-js": "^1.130.2",
"react": "^18",
"react-dom": "^18",
"react-error-boundary": "^4.0.13",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.0.1",
"react-use-websocket": "^4.8.1",
"recharts": "^2.12.7",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^5.0.0",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.40.0",
"@types/aws-lambda": "^8.10.134",
"@types/eslint": "^8.56.10",
"@types/node": "^20",
"@types/pg": "^8.11.6",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/winston": "^2.4.4",
"@types/ws": "^8.5.11",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"autoprefixer": "^10.0.1",
"drizzle-kit": "^0.22.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.2.3",
"eslint-plugin-drizzle": "^0.2.3",
"postcss": "^8",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}