-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.46 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
{
"name": "bazarpro",
"version": "1.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BazarPro/core.git"
},
"bugs": {
"url": "https://github.com/BazarPro/core/issues"
},
"homepage": "https://github.com/BazarPro/core#readme",
"type": "module",
"scripts": {
"dev": "vite",
"dev:full": "concurrently \"npx convex dev\" \"npm run dev -- --host 127.0.0.1 --port 5173\"",
"build": "tsc -b && vite build",
"lint": "eslint .",
"test": "vitest",
"test:debug": "vitest --inspect-brk --no-file-parallelism",
"test:coverage": "vitest run --coverage --coverage.reporter=text",
"test:e2e": "playwright test",
"test:all": "npm run test:coverage && npm run test:e2e",
"preview": "vite preview",
"prerender": "node scripts/prerender-public.js",
"seo:files": "node scripts/generate-seo-files.js",
"build:prerender": "npm run build && npm run prerender && npm run seo:files",
"format": "prettier --write .",
"smtp:test": "node scripts/test-smtp.js",
"seed": "CONVEX_DEPLOY_KEY=${CONVEX_DEPLOY_KEY:-$CONVEX_PREVIEW_DEPLOY_KEY} npx convex run ${PREVIEW_NAME_ARG:-} seed:runSeed",
"clearDB": "CONVEX_DEPLOY_KEY=${CONVEX_DEPLOY_KEY:-$CONVEX_PREVIEW_DEPLOY_KEY} npx convex run ${PREVIEW_NAME_ARG:-} seed:removeAllData"
},
"dependencies": {
"@auth/core": "^0.37.0",
"@convex-dev/auth": "^0.0.90",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@tailwindcss/vite": "^4.1.16",
"class-variance-authority": "^0.7.1",
"convex": "^1.34.0",
"html5-qrcode": "^2.3.8",
"jspdf": "^4.2.0",
"lucide-react": "^0.553.0",
"plausible-tracker": "^0.3.9",
"qrcode": "^1.5.4",
"qrcode.react": "^4.2.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-dropzone": "^14.3.8",
"react-hook-form": "^7.66.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.9.5",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.16",
"zod": "^4.1.13"
},
"devDependencies": {
"@edge-runtime/vm": "^5.0.0",
"@eslint/js": "^9.36.0",
"@playwright/test": "^1.58.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.10.13",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-basic-ssl": "^2.1.4",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"concurrently": "^9.2.1",
"convex-test": "^0.0.41",
"dotenv": "^17.3.1",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"jsdom": "^27.2.0",
"prettier": "^3.6.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "npm:rolldown-vite@7.1.14",
"vitest": "^4.0.15"
},
"overrides": {
"vite": "npm:rolldown-vite@7.1.14"
}
}