-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.51 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.51 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
79
80
81
82
83
84
{
"name": "saas-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"tunnel": "npx ngrok start app --config=ngrok.yml ",
"dev:tunnel": "concurrently \"npm run dev\" \"npm run tunnel\"",
"build": "next build",
"start": "next start",
"lint": "npx prettier --write . && next lint",
"test": "cross-env DOTENV_CONFIG_PATH=.env.test jest"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@duckduckgo/autoconsent": "^14.27.0",
"@ghostery/adblocker-puppeteer": "^2.11.6",
"@hookform/resolvers": "^5.2.1",
"@ngrok/ngrok": "^1.5.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@sparticuz/chromium": "^138.0.2",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.50.2",
"@upstash/qstash": "^2.8.3",
"@upstash/redis": "^1.35.5",
"axios": "^1.11.0",
"chrome-aws-lambda": "^10.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cross-fetch": "^4.1.0",
"dotenv": "^17.2.1",
"jsonwebtoken": "^9.0.2",
"link-preview-js": "^3.1.0",
"lodash": "^4.17.21",
"lucide-react": "^0.523.0",
"next": "15.3.4",
"postgres": "^3.4.7",
"puppeteer": "^24.22.3",
"puppeteer-core": "^10.4.0",
"puppeteer-extra": "^3.3.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-grid-layout": "^1.5.2",
"react-hook-form": "^7.62.0",
"swr": "^2.3.6",
"tailwind-merge": "^3.3.1",
"uuid": "^11.1.0",
"validator": "^13.15.15",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/lodash": "^4.17.20",
"@types/node": "^20",
"@types/puppeteer": "^5.4.7",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-grid-layout": "^1.3.5",
"@types/validator": "^13.15.3",
"concurrently": "^9.2.1",
"cross-env": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "15.3.4",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"jest": "^30.0.5",
"prettier": "3.6.1",
"tailwindcss": "^4",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"tw-animate-css": "^1.3.4",
"typescript": "^5.9.2"
}
}