This commit is contained in:
Meghdad
2026-06-21 03:55:53 +03:30
commit 71a7ea1b57
16 changed files with 2866 additions and 0 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "cors-test",
"private": true,
"version": "0.1.0",
"description": "A static browser-based CORS testing dashboard for API teams.",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"typescript": "^5.8.3",
"vite": "^7.0.0"
}
}