-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
75 lines (75 loc) · 2.18 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": "@reacherhq/webapp",
"version": "0.1.6",
"author": "Amaury <[email protected]>",
"description": "Open-Source Email Verification API",
"license": "GPL-3.0",
"private": true,
"repository": "https://github.com/reacherhq/webapp",
"engines": {
"node": ">=18.0.0 <19.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"gen:geist": "ts-node -P scripts/tsconfig.json scripts/geist.ts",
"gen:license": "ts-node -P scripts/tsconfig.json scripts/license.ts",
"gen:db-ts": "supabase gen types typescript --linked > ./src/supabase/database.types.ts",
"lint": "tsc --noEmit && prettier -w */**/*.{ts,tsx} && next lint",
"start": "next start"
},
"dependencies": {
"@formatjs/intl-localematcher": "^0.5.2",
"@geist-ui/react": "^2.2.5",
"@geist-ui/react-icons": "^1.0.1",
"@getbrevo/brevo": "^2.2.0",
"@hcaptcha/react-hcaptcha": "^1.9.2",
"@mantine/core": "^7.15.2",
"@mantine/hooks": "^7.15.2",
"@reacherhq/api": "^0.3.10",
"@sentry/nextjs": "^8",
"@stripe/stripe-js": "^1.52.0",
"@supabase/auth-ui-react": "^0.4.6",
"@supabase/ssr": "^0.0.10",
"@supabase/supabase-js": "^2.39.1",
"@types/amqplib": "^0.10.4",
"@types/async-retry": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/mailgun-js": "^0.22.18",
"@types/markdown-pdf": "^9.0.5",
"@types/mustache": "^4.2.5",
"@types/negotiator": "^0.6.3",
"@types/react": "18.2.19",
"@types/react-dom": "^18.2.17",
"@types/request-ip": "^0.0.41",
"@types/uuid": "^9.0.7",
"amqplib": "^0.10.3",
"async-retry": "^1.3.3",
"axios": "^1.6.2",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"encoding": "^0.1.13",
"gray-matter": "^4.0.3",
"mailgun-js": "^0.22.0",
"markdown-pdf": "^11.0.0",
"marked-react": "^3.0.0",
"mustache": "^4.2.0",
"negotiator": "^0.6.3",
"next": "^14.0.4",
"rate-limiter-flexible": "^2.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"sharp": "^0.33.5",
"stripe": "^9.13.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-next": "^13.2.4",
"supabase": "^1.115.5",
"typescript": "^5.3.3",
"vercel": "^28.18.2"
}
}