-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.79 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
{
"name": "healthcare-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@ant-design/icons": "^6.0.0",
"@ant-design/nextjs-registry": "^1.1.0",
"@ant-design/v5-patch-for-react-19": "^1.0.3",
"@apollo/client": "^3.13.9",
"@auth0/nextjs-auth0": "^4.9.0",
"@graphql-tools/schema": "^10.0.25",
"@neondatabase/serverless": "^1.0.1",
"@prisma/adapter-neon": "^6.13.0",
"@prisma/client": "^6.13.0",
"@serwist/next": "^9.1.1",
"@serwist/precaching": "^9.1.1",
"@serwist/sw": "^9.1.1",
"@types/leaflet": "^1.9.20",
"antd": "^5.26.7",
"antd-mobile": "^5.40.0",
"antd-mobile-icons": "^0.3.0",
"bcryptjs": "^3.0.2",
"dotenv": "^17.2.1",
"graphql": "^16.11.0",
"graphql-yoga": "^5.15.1",
"jsonwebtoken": "^9.0.2",
"leaflet": "^1.9.4",
"motion": "^12.23.22",
"next": "15.4.10",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-leaflet": "^5.0.0",
"serwist": "^9.1.1",
"web-push": "^3.6.7",
"ws": "^8.18.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/web-push": "^3.6.4",
"@types/ws": "^8.18.1",
"bufferutil": "^4.0.9",
"eslint": "^9",
"eslint-config-next": "15.4.10",
"prisma": "^6.13.0",
"tailwindcss": "^4",
"typescript": "^5"
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/client",
"bcryptjs",
"prisma"
],
"overrides": {
"react": "$react",
"react-dom": "$react-dom",
"react-leaflet": "$react-leaflet"
}
}
}