-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.19 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.19 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
{
"name": "flowengine",
"version": "0.1.1",
"description": "Open-source client portal for automation agencies. Manage teams, invite clients, build templates, connect your own n8n.",
"private": true,
"license": "MIT WITH Commons-Clause",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@fontsource/commit-mono": "^5.2.5",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@stripe/react-stripe-js": "^3.9.0",
"@stripe/stripe-js": "^7.8.0",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.55.0",
"@types/lodash": "^4.17.24",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "12.23.7",
"lodash": "^4.17.23",
"lucide-react": "^0.525.0",
"next": "15.3.6",
"nodemailer": "^7.0.10",
"react": "19.0.1",
"react-colorful": "^5.6.1",
"react-dom": "19.0.1",
"stripe": "^18.5.0",
"tailwind-merge": "^3.3.1",
"uuid": "^11.1.0",
"zod": "^3.25.76"
},
"overrides": {
"motion-dom": "12.23.7",
"motion-utils": "12.23.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.1.13",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/nodemailer": "^7.0.3",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.3.6",
"jsdom": "^29.0.1",
"tailwindcss": "^4",
"typescript": "5.9.3",
"vitest": "^4.1.1"
}
}