-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1021 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1021 Bytes
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
{
"name": "pixel-tracker",
"version": "0.1.0",
"private": true,
"description": "Serverless 1×1 email tracking pixel on Next.js + Vercel + Upstash Redis. Tracks opens, clicks, campaigns, with webhooks and a live dashboard.",
"homepage": "https://github.com/anujarkitekt/pixel-tracker-vercel#readme",
"repository": {
"type": "git",
"url": "https://github.com/anujarkitekt/pixel-tracker-vercel.git"
},
"bugs": {
"url": "https://github.com/anujarkitekt/pixel-tracker-vercel/issues"
},
"license": "MIT",
"author": "Anuj Singh",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"deploy": "./scripts/deploy.sh",
"deploy:preview": "./scripts/deploy.sh --preview",
"deploy:no-git": "./scripts/deploy.sh --no-git",
"deploy:fast": "./scripts/deploy.sh --skip-env"
},
"dependencies": {
"@upstash/redis": "^1.34.3",
"@vercel/analytics": "^1.4.1",
"next": "^14.2.15",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}