-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.24 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": "nedon",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "docker compose up -d && next dev",
"build": "next build",
"start": "next start",
"test": "vitest",
"db-up": "docker compose up -d",
"db-down": "docker compose down",
"db-it": "docker exec -it nedon-db psql -U postgres -d nedon",
"format": "prettier --write . && biome check . --apply",
"biome": "biome check .",
"tsc": "tsc",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"migrate-prod": "dotenv -e .env.prod prisma migrate deploy"
},
"dependencies": {
"@google-cloud/vision": "^4.3.2",
"@prisma/client": "^5.21.1",
"@supabase/supabase-js": "^2.45.6",
"@tailwindcss/container-queries": "^0.1.1",
"@tanstack/react-query": "^5.59.16",
"@trpc/client": "11.0.0-next-beta.228",
"@trpc/next": "11.0.0-next-beta.228",
"@trpc/react-query": "11.0.0-next-beta.228",
"@trpc/server": "11.0.0-next-beta.228",
"framer-motion": "^11.11.10",
"next": "15.0.1",
"openai": "^4.68.4",
"papaparse": "^5.4.1",
"plaid": "29.0.0",
"prisma-json-types-generator": "^3.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-plaid-link": "^3.6.0",
"recharts": "^2.13.0",
"superjson": "^2.2.1",
"tailwind-merge": "^2.5.4",
"zod": "^3.23.8",
"zod-prisma-types": "^3.1.8",
"zustand": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@iconify/json": "^2.2.264",
"@iconify/tailwind": "^1.1.3",
"@tanstack/react-query-devtools": "^5.59.16",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "22.8.1",
"@types/papaparse": "^5.3.15",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"autoprefixer": "^10.4.20",
"cypress": "^13.15.1",
"dotenv-cli": "^7.4.2",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"postcss": "^8.4.47",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.8",
"prisma": "^5.21.1",
"tailwindcss": "^3.4.14",
"typescript": "5.6.3",
"vitest": "^2.1.3",
"vitest-mock-extended": "^2.0.2"
},
"pnpm": {
"overrides": {
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1"
}
}
}