-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.31 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": "wpdash",
"version": "0.1.0",
"private": true,
"description": "WP Dash — Centralized WordPress monitoring and maintenance dashboard",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"docker:dev": "docker compose -f docker-compose.dev.yml up --build",
"docker:prod": "docker compose up --build -d",
"check": "npm run lint && npm run type-check && npm run test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@supabase/ssr": "latest",
"@supabase/supabase-js": "latest",
"@tailwindcss/forms": "latest",
"@tailwindcss/postcss": "latest",
"apexcharts": "latest",
"autoprefixer": "latest",
"clsx": "latest",
"drizzle-orm": "latest",
"flatpickr": "latest",
"jspdf": "^4.2.0",
"jspdf-autotable": "^5.0.7",
"next": "latest",
"postgres": "latest",
"react": "latest",
"react-apexcharts": "latest",
"react-dom": "latest",
"react-dropzone": "latest",
"resend": "^6.9.3",
"stripe": "^20.4.0",
"tailwind-merge": "latest",
"zod": "latest",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/eslintrc": "latest",
"@playwright/test": "latest",
"@svgr/webpack": "latest",
"@testing-library/jest-dom": "latest",
"@testing-library/react": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@vitejs/plugin-react": "latest",
"@vitest/coverage-v8": "latest",
"drizzle-kit": "latest",
"eslint": "latest",
"eslint-config-next": "latest",
"eslint-plugin-drizzle": "latest",
"jsdom": "latest",
"postcss": "latest",
"prettier": "latest",
"prettier-plugin-tailwindcss": "latest",
"tailwindcss": "latest",
"typescript": "latest",
"vitest": "latest"
}
}