-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.31 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
{
"name": "uploader-app",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "vite dev --port 5000",
"generate-routes": "tsr generate",
"build": "vite build",
"preview": "vite preview --port 5500",
"test": "vitest run",
"lint": "eslint",
"format": "prettier --write . && eslint --fix",
"check": "prettier --check .",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:pull": "drizzle-kit pull",
"db:studio": "drizzle-kit studio",
"db:seed": "bun run ./src/db/seed.ts",
"prepare": "husky",
"email:dev": "email dev --dir ./src/components/emails -p 3030"
},
"dependencies": {
"@better-auth/redis-storage": "^1.6.20",
"@fontsource-variable/vazirmatn": "^5.2.8",
"@hookform/resolvers": "^5.4.0",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-devtools": "latest",
"@tanstack/react-query": "latest",
"@tanstack/react-query-devtools": "latest",
"@tanstack/react-router": "latest",
"@tanstack/react-router-devtools": "latest",
"@tanstack/react-router-ssr-query": "latest",
"@tanstack/react-start": "latest",
"@tanstack/router-plugin": "^1.132.0",
"@zxcvbn-ts/core": "3",
"@zxcvbn-ts/language-common": "3",
"@zxcvbn-ts/language-en": "3",
"axios": "^1.18.1",
"better-auth": "^1.5.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-kit": "^0.31.9",
"drizzle-orm": "^0.45.1",
"file-type": "^22.0.1",
"image-size": "^2.0.2",
"ioredis": "^5.11.1",
"lucide-react": "^1.21.0",
"nanoid": "^5.1.15",
"next-themes": "^0.4.6",
"nitro": "npm:nitro-nightly@latest",
"nodemailer": "^9.0.1",
"pg": "^8.16.3",
"radix-ui": "^1.6.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-email": "6.6.3",
"react-hook-form": "^7.80.0",
"sanitize-filename": "^1.6.4",
"shadcn": "^4.11.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"unique-names-generator": "^4.7.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@react-email/ui": "6.6.3",
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/devtools-vite": "latest",
"@tanstack/eslint-config": "latest",
"@tanstack/router-cli": "^1.132.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.10.2",
"@types/nodemailer": "^8.0.1",
"@types/pg": "^8.15.6",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"dotenv": "^17.3.1",
"eslint": "^9.20.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^17.0.8",
"prettier": "^3.8.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite": "^8.0.0",
"vitest": "^4.1.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lightningcss"
]
},
"trustedDependencies": [
"esbuild",
"sharp",
"unrs-resolver"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*": "prettier --write --ignore-unknown"
}
}