-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.95 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
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
118
119
120
121
122
123
{
"name": "begursecret",
"version": "0.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "SKIP_ENV_VALIDATION=true next lint",
"format": "prettier . --write",
"test:integration": "SKIP_ENV_VALIDATION=true jest --ci",
"test:integration:dev": "SKIP_ENV_VALIDATION=true jest --watch",
"test:e2e": "playwright test",
"test:e2e:dev": "playwright test --ui",
"db:generate": "SKIP_ENV_VALIDATION=true drizzle-kit generate:pg",
"db:push": "drizzle-kit push:pg",
"db:studio": "drizzle-kit studio",
"db:local:studio": "USE_LOCAL_DB=true drizzle-kit studio",
"db:local:migrate": "USE_LOCAL_DB=true node ./src/server/db/migrate.mjs",
"db:local:run-app": "USE_LOCAL_DB=true NEXT_PUBLIC_ENV_LABEL=local next dev",
"db:local:run-db": "# TODO update from mysql to postgresql # docker run --name descobreix-begur-app-database -e MYSQL_ROOT_PASSWORD=unsafePaswordOnlyForLocalhost -e MYSQL_DATABASE=descobreix-begur-app -p 3306:3306 mysql"
},
"dependencies": {
"@auth/core": "0.26.3",
"@auth/drizzle-adapter": "0.8.2",
"@aws-sdk/client-s3": "3.511.0",
"@ducanh2912/next-pwa": "10.2.5",
"@hookform/resolvers": "3.3.4",
"@neondatabase/serverless": "0.9.0",
"@nextui-org/react": "2.2.9",
"@petoc/leaflet-double-touch-drag-zoom": "1.0.3",
"@tabler/icons-react": "2.47.0",
"@tanstack/react-query": "4.36.1",
"@trpc/client": "10.45.1",
"@trpc/react-query": "10.45.1",
"@trpc/server": "10.45.1",
"@typescript-eslint/parser": "6.21.0",
"@uiw/react-md-editor": "4.0.3",
"@vercel/speed-insights": "1.0.9",
"autoprefixer": "10.4.17",
"bcryptjs": "2.4.3",
"clsx": "2.1.0",
"drizzle-orm": "0.30.7",
"drizzle-zod": "0.5.1",
"eslint-plugin-drizzle": "0.2.3",
"framer-motion": "11.0.3",
"leaflet": "1.9.4",
"leaflet-rotate": "0.2.8",
"leaflet.locatecontrol": "0.79.0",
"moize": "6.1.6",
"mysql2": "3.9.1",
"next": "14.1.0",
"next-auth": "4.24.5",
"next-intl": "3.7.0",
"postcss": "8.4.35",
"postgres": "3.4.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.50.1",
"react-leaflet": "4.2.1",
"react-markdown": "9.0.1",
"sharp": "0.32.6",
"superjson": "1.13.3",
"tailwind-scrollbar-hide": "1.1.7",
"tailwindcss": "3.4.1",
"tsparticles-confetti": "2.12.0",
"typescript": "5.3.3",
"uuid": "9.0.1",
"zod": "3.22.4"
},
"devDependencies": {
"@playwright/test": "1.41.2",
"@tailwindcss/typography": "0.5.10",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.1",
"@testing-library/user-event": "14.5.2",
"@types/bcryptjs": "2.4.6",
"@types/jest": "29.5.12",
"@types/leaflet": "1.9.8",
"@types/leaflet-rotate": "0.1.4",
"@types/leaflet.locatecontrol": "0.74.4",
"@types/node": "20.11.17",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "6.21.0",
"dotenv": "16.4.1",
"drizzle-kit": "0.20.14",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest-dom": "5.1.0",
"eslint-plugin-playwright": "0.22.2",
"eslint-plugin-testing-library": "6.2.0",
"haversine-distance": "1.2.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"next-axiom": "1.1.1",
"prettier": "3.2.5",
"prettier-plugin-organize-imports": "3.2.4",
"prettier-plugin-tailwindcss": "0.5.11",
"server-only": "0.0.1",
"tailwind-merge": "2.2.1",
"tailwindcss-safe-area": "0.5.1",
"ts-jest": "29.1.2",
"ts-toolbelt": "9.6.0",
"webpack": "5.90.1"
},
"license": "GNU GENERAL PUBLIC LICENSE",
"packageManager": "pnpm@8.15.0",
"pnpm": {
"supportedArchitectures": {
"os": [
"linux",
"darwin",
"current"
],
"cpu": [
"x64",
"arm64"
]
}
}
}