-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 5.63 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 5.63 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "armazem-sao-joaquim",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"build:netlify": "next build",
"build:static": "next build && node scripts/copy-static-assets.js",
"start": "next start -p 3000",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:all": "npm run test && npm run test:e2e",
"test:suite": "node scripts/test-suite.js",
"test:simple": "node scripts/test-simple.js",
"optimize-images": "node scripts/optimize-images.js",
"generate-icons": "node scripts/generate-icons.js",
"optimize:performance": "node scripts/optimize-performance.js",
"build:optimized": "npm run generate-icons && npm run optimize-images && npm run build",
"build:production": "node scripts/build-production.js",
"optimize:deploy": "node scripts/optimize-deploy.js",
"deploy:prepare": "npm run optimize:deploy && npm run build",
"deploy:netlify": "node scripts/optimize-netlify-deploy.js && npm run build",
"build:safe": "node scripts/build-production-safe.js",
"analyze": "ANALYZE=true npm run build",
"lighthouse": "lighthouse http://localhost:3000 --output=html --output-path=./lighthouse-report.html",
"perf:check": "npm run optimize:performance && npm run build",
"type-check": "tsc --noEmit",
"build:check": "npm run type-check && npm run build",
"clean": "rimraf .next out node_modules/.cache && echo 'Limpeza concluida'",
"validate": "node scripts/validate-setup.js",
"test-components": "node -r ts-node/register scripts/test-components.ts",
"diagnose": "node scripts/test-api.js",
"setup:check": "npm run validate && npm run type-check",
"backup": "node scripts/backup-system.js create",
"backup:restore": "node scripts/backup-system.js restore",
"backup:list": "node scripts/backup-system.js list",
"test:api": "node scripts/test-api.js",
"test:supabase": "node scripts/test-supabase.js",
"test:email": "node scripts/test-email.js",
"test:smtp": "node scripts/test-smtp-configuration.js",
"smtp:test": "node scripts/test-smtp-configuration.js",
"setup:admin": "tsx scripts/setup-admin.ts",
"diagnose:oauth": "node scripts/diagnose-oauth.js",
"test:oauth-error": "node scripts/test-oauth-error.js",
"fix:profiles": "node scripts/fix-profiles-table.js",
"check:profiles-rls": "node scripts/check-profiles-rls.js",
"apply:profiles-rls": "node scripts/apply-profiles-rls.js",
"verify:policies": "node scripts/verify-policies.js",
"test:rls-direct": "node scripts/test-rls-direct.js",
"test:oauth-fix": "node scripts/test-oauth-fix.js",
"fix:rls-final": "node scripts/apply-final-rls-fix.js",
"fix:oauth-constraint": "node scripts/fix-oauth-constraint.js",
"fix:pkce-config": "node scripts/fix-pkce-config.js",
"clear:auth-storage": "node scripts/clear-auth-storage.js",
"fix:pkce-storage": "node scripts/fix-pkce-storage.js",
"test:oauth-clean": "node scripts/test-oauth-clean.js",
"fix:pkce-final": "node scripts/fix-pkce-final.js",
"fix:pkce-radical": "node scripts/fix-pkce-radical.js",
"test:oauth-implicit": "node scripts/test-oauth-implicit.js",
"diagnose:admin": "node scripts/diagnose-admin-access.js",
"fix:admin-redirect": "node scripts/fix-admin-redirect.js",
"debug:session-api": "node scripts/debug-session-api.js",
"fix:session-api": "node scripts/fix-session-api.js",
"test:api-check-role": "node scripts/test-api-check-role.js"
},
"engines": {
"node": ">=20.x",
"npm": ">=10.0.0"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@hookform/resolvers": "3.3.2",
"@next/bundle-analyzer": "^15.4.5",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.50.3",
"@tailwindcss/forms": "0.5.7",
"@tailwindcss/typography": "0.5.10",
"@types/node": "20.10.0",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"autoprefixer": "10.4.16",
"class-variance-authority": "0.7.0",
"clsx": "2.0.0",
"critters": "^0.0.23",
"cssnano": "^7.1.0",
"d3-shape": "^3.2.0",
"date-fns": "^4.1.0",
"eslint": "^9.0.0",
"eslint-config-next": "15.4.5",
"glob": "^11.0.3",
"lucide-react": "0.294.0",
"next": "^16.1.6",
"next-themes": "0.2.1",
"node-fetch": "^3.3.2",
"postcss": "8.4.32",
"postcss-custom-properties": "^14.0.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "7.48.2",
"react-hot-toast": "2.4.1",
"react-icons": "^5.5.0",
"react-is": "^19.1.1",
"recharts": "^3.1.2",
"resend": "^5.0.0",
"sonner": "^2.0.7",
"tailwind-merge": "2.1.0",
"tailwindcss": "3.3.6",
"tailwindcss-animate": "1.0.7",
"typescript": "5.3.3",
"zod": "3.22.4"
},
"devDependencies": {
"@playwright/test": "^1.53.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^29.5.12",
"bcryptjs": "^2.4.3",
"dotenv": "^16.6.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.5",
"tsx": "^4.7.0"
},
"optionalDependencies": {
"sharp": "^0.33.5"
}
}