-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 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
{
"name": "pray_calendar",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "next start --port ${PORT-3000}",
"dev": "next dev --hostname 0.0.0.0 --port 3300",
"generate-sw": "bun scripts/generate-sw.js",
"build": "bun run generate-sw && next build",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "biome lint .",
"format": "biome format . --write",
"check": "biome check .",
"check:fix": "biome check . --write"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.1.5",
"@vercel/analytics": "^1.6.1",
"copy-to-clipboard": "^3.3.3",
"ical-generator": "^10.0.0",
"moment": "^2.30.1",
"moment-timezone": "^0.6.0",
"next": "^16.1.4",
"pdf-lib": "^1.17.1",
"qrcode.react": "^4.2.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"redis": "^5.10.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.12",
"@playwright/test": "^1.58.1",
"@tailwindcss/postcss": "^4.1.18",
"@types/bun": "^1.3.8",
"@types/node": "^25.0.10",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"lefthook": "^2.0.15",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
}
}