-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.37 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
{
"name": "site-sniper-ai",
"version": "1.0.0",
"private": true,
"description": "AI-powered B2B growth tool that analyzes websites, finds pain points, and generates personalized cold outreach.",
"scripts": {
"dev": "concurrently \"next dev\" \"./pocketbase/pocketbase serve --http 127.0.0.1:8090\"",
"dev:next": "next dev",
"dev:pb": "./pocketbase/pocketbase serve --http 127.0.0.1:8090",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"clean": "rm -rf .next node_modules/.cache",
"pb:migrate": "./pocketbase/pocketbase migrate collections",
"pb:admin": "./pocketbase/pocketbase superuser upsert [email protected] admin123456"
},
"dependencies": {
"cheerio": "^1.2.0",
"clsx": "^2.1.1",
"cookie": "^1.1.1",
"framer-motion": "^12.40.0",
"jose": "^6.2.3",
"next": "16.2.9",
"next-themes": "^0.4.6",
"pocketbase": "^0.25.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"resend": "^6.14.0",
"stripe": "^22.2.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.2.3",
"dotenv": "^17.4.2",
"eslint": "^9",
"eslint-config-next": "16.2.9",
"tailwindcss": "^4",
"tsx": "^4.0.0",
"typescript": "^5"
}
}