-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
66 lines (66 loc) · 2.07 KB
/
package.json
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
{
"name": "thiss.link",
"private": true,
"scripts": {
"firebase": "firebase emulators:start --import=./data --export-on-exit",
"dev": "npm run firebase & next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"docker:build": "docker-compose build",
"docker": "docker-compose up",
"docker:d": "docker-compose up -d",
"stop": "pkill java firebase; for port in 4000 4001 4002 9150; do lsof -t -i:$port | xargs -r kill; done",
"build:worker": "opennextjs-cloudflare",
"dev:worker": "wrangler dev --port 8771",
"preview:worker": "npm run build:worker && npm run dev:worker",
"deploy:worker": "npm run build:worker && wrangler deploy"
},
"dependencies": {
"@opennextjs/aws": "^3.3.1",
"@paypal/paypal-js": "^8.1.2",
"@paypal/react-paypal-js": "^8.7.0",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"eslint-config-next": "^14.2.21",
"faker": "^6.6.6",
"faker-js": "^1.0.0",
"firebase": "^11.0.2",
"jotai": "^2.10.3",
"lucide-react": "^0.468.0",
"monkey-typewriter": "^1.0.14",
"motion": "^11.13.1",
"next": "^14.2.21",
"next-themes": "^0.4.4",
"qr-code-styling": "^1.8.4",
"react": "^18",
"react-dom": "^18",
"react-fast-marquee": "^1.6.5",
"react-icons": "^5.4.0",
"react-toastify": "^10.0.6",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@opennextjs/cloudflare": "^0.3.3",
"@types/react": "18.3.3",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-sort-imports": "^1.8.6",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.16",
"wrangler": "^3.99.0"
},
"volta": {
"node": "20.11.0"
}
}