-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.49 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
{
"name": "@crittermart/storefront",
"private": true,
"version": "0.0.0",
"type": "module",
"description": "CritterMart customer storefront SPA (ADR 015/016/018). The single round-two frontend: a Vite + React CSR app that calls the three Wolverine.Http services (Catalog, Inventory, Orders) directly, cross-origin, with no BFF and no dev proxy. Bootstrap scaffold — the W2 cart-review screen (consuming GET /carts/mine) is the first screen slice that follows.",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest run"
},
"dependencies": {
"@hookform/resolvers": "^5.0.0",
"@tanstack/react-query": "^5.101.0",
"@tanstack/react-router": "^1.170.15",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.54.2",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.61.0",
"@tailwindcss/vite": "^4.3.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.13.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.0",
"jsdom": "^29.1.1",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.0",
"vite": "^8.0.0",
"vitest": "^4.1.8"
}
}