-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.43 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
78
{
"name": "ship-fast-code",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"db:migrate": "node scripts/migrations/apply_migrations_direct.js",
"db:test": "node scripts/migrations/test_schema.js",
"test:lead-api": "node scripts/test-lead-api.js",
"test:dynamic-form": "node scripts/tests/dynamic-form-rendering.test.js",
"test:dynamic-form-api": "node scripts/tests/dynamic-form-api.test.js",
"test:waitlist-forms": "npm run test:dynamic-form && npm run test:dynamic-form-api"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.2.0",
"@radix-ui/react-avatar": "^1.1.9",
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-label": "^2.1.6",
"@radix-ui/react-scroll-area": "^1.2.8",
"@radix-ui/react-select": "^2.2.4",
"@radix-ui/react-separator": "^1.1.6",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-switch": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.11",
"@radix-ui/react-toast": "^1.2.14",
"@shadcn/ui": "^0.0.4",
"@stagewise/toolbar": "^0.4.9",
"@supabase/ssr": "^0.4.1",
"@vercel/analytics": "^1.5.0",
"axios": "^1.6.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"crisp-sdk-web": "^1.0.22",
"dotenv": "^16.5.0",
"eslint-config-next": "13.4.19",
"form-data": "^4.0.0",
"framer-motion": "^12.12.1",
"html-to-image": "^1.11.13",
"lucide-react": "^0.509.0",
"nanoid": "^5.1.5",
"next": "^14.1.4",
"next-sitemap": "^4.2.3",
"nextjs-toploader": "^1.6.11",
"node-fetch": "^3.3.2",
"nodemailer": "^6.9.13",
"pg": "^8.16.0",
"playwright": "^1.52.0",
"posthog-js": "^1.240.6",
"posthog-node": "^4.17.1",
"qrcode": "^1.5.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-syntax-highlighter": "^15.5.0",
"react-tooltip": "^5.26.3",
"recharts": "^2.15.3",
"resend": "^4.0.1",
"slugify": "^1.6.6",
"stripe": "^13.11.0",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.1.0"
},
"devDependencies": {
"autoprefixer": "^10.4.19",
"daisyui": "^4.12.24",
"eslint": "^8.57.1",
"postcss": "^8.4.38",
"supabase": "^2.22.12",
"tailwindcss": "^3.4.3"
}
}