-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.49 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
{
"name": "next",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"shadow:dev": "shadow-cljs watch app api",
"shadow:build": "shadow-cljs release app api",
"db:migrate": "pnpm with-env prisma migrate dev --create-only",
"db:deploy": "pnpm with-env prisma migrate deploy",
"with-env": "dotenv -e ./.env.local --"
},
"dependencies": {
"@apollo/client": "^3.7.0",
"@apollo/server": "^4.0.4",
"@as-integrations/next": "^2.0.2",
"@capacitor-community/background-geolocation": "^1.2.7",
"@capacitor/android": "^4.6.2",
"@capacitor/app": "^4.1.1",
"@capacitor/core": "^4.6.2",
"@capacitor/device": "^4.1.0",
"@capacitor/ios": "^4.6.2",
"@capgo/capacitor-updater": "^4.17.11",
"@datadog/browser-rum": "^4.34.2",
"@floating-ui/react-dom": "^1.0.1",
"@googlemaps/js-api-loader": "^1.16.2",
"@googlemaps/markerclusterer": "^2.0.15",
"@headlessui/react": "^1.6.6",
"@prisma/client": "^5.4.1",
"@radix-ui/react-slider": "^1.1.1",
"@stripe/react-stripe-js": "^1.16.4",
"@stripe/stripe-js": "^1.46.0",
"@tanstack/match-sorter-utils": "^8.7.6",
"@tanstack/react-table": "^8.7.9",
"@vercel/analytics": "^1.0.2",
"@visx/annotation": "^3.0.1",
"@visx/axis": "^3.1.0",
"@visx/curve": "^3.0.0",
"@visx/event": "^3.0.1",
"@visx/geo": "^3.0.0",
"@visx/gradient": "^3.0.0",
"@visx/grid": "^3.0.1",
"@visx/group": "^3.0.0",
"@visx/legend": "^3.0.0",
"@visx/marker": "^3.0.0",
"@visx/mock-data": "^3.0.0",
"@visx/responsive": "^3.0.0",
"@visx/scale": "^3.0.0",
"@visx/shape": "^3.0.0",
"@visx/tooltip": "^3.1.2",
"apollo-link-scalars": "^4.0.1",
"aws-rum-web": "^1.12.0",
"aws-sdk": "^2.1312.0",
"axios": "^1.3.4",
"bcryptjs": "^2.4.3",
"cookie": "^0.5.0",
"d3-array": "^3.2.3",
"d3-color": "^3.1.0",
"d3-format": "^3.1.0",
"d3-interpolate": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-time": "^3.1.0",
"d3-time-format": "^4.1.0",
"date-fns": "^2.29.3",
"encoding": "^0.1.13",
"express": "^4.18.2",
"framer-motion": "^7.6.2",
"googleapis": "^109.0.1",
"graphql": "^16.6.0",
"next": "^13.5.5",
"nodemailer": "^6.8.0",
"papaparse": "^5.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-feather": "^2.0.10",
"react-router-dom": "^6.4.2",
"resend": "^1.1.0",
"serverless-http": "^3.1.0",
"stripe": "^11.11.0",
"topojson-client": "^3.1.0",
"twilio": "^4.19.0",
"use-lilius": "^2.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@capacitor/assets": "^3.0.1",
"@capacitor/cli": "^5.5.0",
"@faker-js/faker": "7.6.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/google.maps": "^3.54.4",
"@types/node": "^20.8.6",
"@types/react": "latest",
"@types/react-dom": "latest",
"@vercel/ncc": "^0.38.0",
"autoprefixer": "latest",
"cross-fetch": "^4.0.0",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"eslint": "latest",
"eslint-config-next": "latest",
"global-jsdom": "^9.1.0",
"jsdom": "^22.1.0",
"nodemon": "^3.0.1",
"postcss": "^8.4.31",
"postinstall-postinstall": "^2.1.0",
"prisma": "^5.4.1",
"shadow-cljs": "^2.25.8",
"tailwindcss": "latest",
"typescript": "latest"
}
}