forked from Hostzero-GmbH/yet-another-status-page
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.47 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
{
"name": "yet-another-status-page",
"version": "0.4.0",
"description": "A modern, self-hosted status page built with Payload CMS and Next.js",
"type": "module",
"scripts": {
"dev": "cross-env NODE_OPTIONS=--no-deprecation next dev",
"build": "cross-env NODE_OPTIONS=--no-deprecation next build",
"start": "cross-env NODE_OPTIONS=--no-deprecation next start",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"generate:types": "payload generate:types",
"generate:importmap": "payload generate:importmap",
"demo:seed": "tsx scripts/seed-demo-data.ts",
"demo:reset": "tsx scripts/reset-demo.ts",
"test:e2e": "./scripts/run-e2e-tests.sh",
"test:e2e:headed": "./scripts/run-e2e-tests.sh --headed",
"test:e2e:debug": "./scripts/run-e2e-tests.sh --debug",
"test:e2e:ui": "./scripts/run-e2e-tests.sh --ui",
"test:e2e:fast": "CI= PAYLOAD_PUBLIC_ALLOW_WRITES=true npx playwright test --project=chromium",
"test:e2e:report": "npx playwright show-report"
},
"dependencies": {
"@payloadcms/db-postgres": "3.85.0",
"@payloadcms/next": "3.85.0",
"@payloadcms/richtext-lexical": "3.85.0",
"@payloadcms/storage-vercel-blob": "3.85.0",
"@payloadcms/ui": "3.85.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"debug": "^4.4.3",
"dotenv": "^17.3.1",
"graphql": "^16.14.0",
"lucide-react": "^1.17.0",
"nanoid": "^5.1.11",
"next": "16.2.6",
"next-themes": "^0.4.6",
"nodemailer": "^8.0.10",
"payload": "3.85.0",
"payload-oauth2": "^1.0.21",
"react": "19.2.6",
"react-dom": "19.2.6",
"sass": "^1.100.0",
"sharp": "0.34.5",
"tailwind-merge": "^3.6.0",
"twilio": "^6.0.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.39.4",
"@next/eslint-plugin-next": "^16.2.6",
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4.3.0",
"@types/debug": "^4.1.12",
"@types/node": "^24.0.0",
"@types/nodemailer": "^8.0.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"playwright": "^1.57.0",
"postcss": "^8.5.15",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"yaml": "^2.8.2"
},
"engines": {
"node": ">=24.0.0"
}
}