-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.39 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.39 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
{
"name": "snaplink",
"version": "1.0.0",
"description": "Production-ready URL shortener with real-time analytics",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"db:generate": "drizzle-kit generate:pg",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push:pg",
"db:studio": "drizzle-kit studio",
"db:drop": "drizzle-kit drop"
},
"dependencies": {
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3",
"@trpc/client": "^10.45.0",
"@trpc/react-query": "^10.45.0",
"@trpc/server": "^10.45.0",
"@hookform/resolvers": "^3.3.4",
"@next-auth/prisma-adapter": "^1.0.7",
"next-auth": "^4.24.10",
"react-hook-form": "^7.48.0",
"zod": "^3.22.4",
"drizzle-orm": "^0.29.1",
"pg": "^8.11.3",
"bcrypt": "^5.1.1",
"recharts": "^2.10.3",
"clsx": "^2.0.0",
"tailwindcss": "^3.3.6",
"@tailwindcss/forms": "^0.5.7",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-slot": "^1.2.4",
"lucide-react": "^0.294.0",
"date-fns": "^2.30.0",
"ua-parser-js": "^1.0.37",
"@sentry/nextjs": "^7.91.0",
"dotenv": "^16.3.1",
"superjson": "^2.2.1",
"@trpc/next": "^10.45.0"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/bcrypt": "^5.0.2",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.11",
"drizzle-kit": "^0.20.8",
"vitest": "^1.1.0",
"@vitest/ui": "^1.1.0",
"@vitest/coverage-v8": "^1.1.0",
"@testing-library/react": "^14.1.2",
"@testing-library/jest-dom": "^6.1.5",
"msw": "^2.0.11",
"@playwright/test": "^1.40.1",
"ts-node": "^10.9.2",
"eslint-config-prettier": "^9.1.0"
}
}