Create web/package.json
Browse files- web/package.json +69 -0
web/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "backgroundfx-pro-web",
|
| 3 |
+
"version": "1.0.0",
|
| 4 |
+
"private": true,
|
| 5 |
+
"scripts": {
|
| 6 |
+
"dev": "next dev",
|
| 7 |
+
"build": "next build",
|
| 8 |
+
"start": "next start",
|
| 9 |
+
"lint": "next lint",
|
| 10 |
+
"test": "jest",
|
| 11 |
+
"test:watch": "jest --watch",
|
| 12 |
+
"test:e2e": "playwright test",
|
| 13 |
+
"type-check": "tsc --noEmit",
|
| 14 |
+
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\""
|
| 15 |
+
},
|
| 16 |
+
"dependencies": {
|
| 17 |
+
"next": "14.1.0",
|
| 18 |
+
"react": "18.2.0",
|
| 19 |
+
"react-dom": "18.2.0",
|
| 20 |
+
"@tanstack/react-query": "^5.17.0",
|
| 21 |
+
"axios": "^1.6.5",
|
| 22 |
+
"zustand": "^4.4.7",
|
| 23 |
+
"react-dropzone": "^14.2.3",
|
| 24 |
+
"react-hook-form": "^7.48.2",
|
| 25 |
+
"zod": "^3.22.4",
|
| 26 |
+
"@hookform/resolvers": "^3.3.4",
|
| 27 |
+
"framer-motion": "^10.18.0",
|
| 28 |
+
"react-hot-toast": "^2.4.1",
|
| 29 |
+
"date-fns": "^3.2.0",
|
| 30 |
+
"clsx": "^2.1.0",
|
| 31 |
+
"tailwind-merge": "^2.2.0",
|
| 32 |
+
"@radix-ui/react-dialog": "^1.0.5",
|
| 33 |
+
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
| 34 |
+
"@radix-ui/react-select": "^2.0.0",
|
| 35 |
+
"@radix-ui/react-slider": "^1.1.2",
|
| 36 |
+
"@radix-ui/react-switch": "^1.0.3",
|
| 37 |
+
"@radix-ui/react-tabs": "^1.0.4",
|
| 38 |
+
"@radix-ui/react-tooltip": "^1.0.7",
|
| 39 |
+
"@radix-ui/react-progress": "^1.0.3",
|
| 40 |
+
"lucide-react": "^0.309.0",
|
| 41 |
+
"socket.io-client": "^4.6.0",
|
| 42 |
+
"react-image-crop": "^11.0.1",
|
| 43 |
+
"react-colorful": "^5.6.1",
|
| 44 |
+
"recharts": "^2.10.4",
|
| 45 |
+
"react-intersection-observer": "^9.5.3",
|
| 46 |
+
"sharp": "^0.33.2"
|
| 47 |
+
},
|
| 48 |
+
"devDependencies": {
|
| 49 |
+
"@types/node": "^20.11.0",
|
| 50 |
+
"@types/react": "^18.2.47",
|
| 51 |
+
"@types/react-dom": "^18.2.18",
|
| 52 |
+
"typescript": "^5.3.3",
|
| 53 |
+
"eslint": "^8.56.0",
|
| 54 |
+
"eslint-config-next": "14.1.0",
|
| 55 |
+
"@typescript-eslint/parser": "^6.18.1",
|
| 56 |
+
"@typescript-eslint/eslint-plugin": "^6.18.1",
|
| 57 |
+
"prettier": "^3.2.2",
|
| 58 |
+
"tailwindcss": "^3.4.1",
|
| 59 |
+
"autoprefixer": "^10.4.16",
|
| 60 |
+
"postcss": "^8.4.33",
|
| 61 |
+
"@tailwindcss/forms": "^0.5.7",
|
| 62 |
+
"@tailwindcss/typography": "^0.5.10",
|
| 63 |
+
"jest": "^29.7.0",
|
| 64 |
+
"@testing-library/react": "^14.1.2",
|
| 65 |
+
"@testing-library/jest-dom": "^6.2.0",
|
| 66 |
+
"@playwright/test": "^1.40.1",
|
| 67 |
+
"msw": "^2.0.14"
|
| 68 |
+
}
|
| 69 |
+
}
|