-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.2 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
{
"name": "airbnb-clone",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "set ANALYZE=true&& pnpm build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write --ignore-unknown --cache --cache-location=.prettier-cache .",
"clean": "rm -rf .next",
"db:push": "pnpm drizzle-kit push:pg",
"db:migrate": "pnpm drizzle-kit generate:pg",
"scripts": "tsx scripts/cli.ts",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@hookform/resolvers": "^3.3.0",
"@tanstack/react-query": "^4.33.0",
"@trpc/client": "^10.38.0",
"@trpc/next": "^10.38.0",
"@trpc/react-query": "^10.38.0",
"@trpc/server": "^10.38.0",
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@vercel/postgres": "^0.8.0",
"axios": "^1.5.0",
"bcrypt": "^5.1.1",
"drizzle-orm": "^0.30.8",
"drizzle-zod": "^0.5.1",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"jotai": "^2.4.0",
"keen-slider": "^6.8.6",
"next": "13.4.19",
"next-auth": "^4.23.1",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.4",
"react-tailwindcss-datepicker": "^1.6.6",
"remixicon": "^3.5.0",
"sharp": "^0.32.5",
"superjson": "^1.13.1",
"typescript": "^5.1.6",
"zod": "^3.22.2"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@next/bundle-analyzer": "^13.4.19",
"@tanstack/react-query-devtools": "^4.33.0",
"@types/bcrypt": "^5.0.0",
"@types/inquirer": "^9.0.3",
"autoprefixer": "^10.4.15",
"cspell": "^7.0.1",
"cssnano": "^6.0.1",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.20.14",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"inquirer": "^9.2.19",
"lint-staged": "^14.0.1",
"postcss": "^8.4.28",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.3.3",
"tsx": "^4.7.2",
"unsplash-js": "^7.0.18"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown --cache --cache-location=.prettier-cache",
"cspell --show-suggestions --relative --no-must-find-files --cache"
],
"*.{ts,tsx}": [
"eslint --fix --max-warnings 0 --cache"
]
}
}