-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.02 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.02 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
72
73
74
75
76
77
{
"name": "gitforms",
"version": "2.0.0",
"private": true,
"description": "GitForms - Zero-cost contact forms using GitHub Issues as free database. Open-source alternative to Typeform, Tally, FormSpree. Features: unlimited submissions, automatic email notifications, multilingual (IT/EN), 100% customizable without code, deploy anywhere (Vercel, Netlify, Docker, AWS). Perfect for startups, freelancers, agencies. MIT license.",
"keywords": [
"gitforms",
"contact-form",
"lead-capture",
"typeform-alternative",
"tally-alternative",
"formspree-alternative",
"github-forms",
"github-issues",
"zero-cost",
"free-form",
"open-source",
"nextjs",
"react",
"typescript",
"tailwind",
"self-hosted",
"landing-page",
"email-notifications",
"multilingual",
"no-database",
"serverless",
"vercel",
"netlify",
"docker",
"white-label",
"customizable",
"privacy-first",
"gdpr",
"lead-generation"
],
"repository": {
"type": "git",
"url": "https://github.com/Luigigreco/gitforms"
},
"author": "Luigi Greco",
"license": "MIT",
"bugs": {
"url": "https://github.com/Luigigreco/gitforms/issues"
},
"homepage": "https://github.com/Luigigreco/gitforms#readme",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"next": "^14.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.54.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@testing-library/react": "^14.3.0",
"@testing-library/user-event": "^14.5.0",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.16",
"jsdom": "^24.1.0",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
"typescript": "^5.3.0",
"vitest": "^1.6.0"
}
}