-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.51 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
{
"name": "centrium-checkout",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Checkout web para operadores de caixa do ERP Centrium (SPA React + BFF Fastify no mesmo processo Node)",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "concurrently -n client,server -c cyan,magenta \"npm:dev:client\" \"npm:dev:server\"",
"dev:client": "vite",
"dev:server": "tsx watch src/server/index.ts",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build",
"build:server": "esbuild src/server/index.ts --bundle --platform=node --format=esm --packages=external --outfile=dist/server/index.js",
"start": "node dist/server/index.js",
"bones": "node scripts/boneyard-capture.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint src tests vite.config.ts vitest.config.ts playwright.config.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test"
},
"dependencies": {
"@fastify/cookie": "^11.0.0",
"@fastify/static": "^10.1.2",
"@fontsource/geist-mono": "^5.3.0",
"@fontsource/inter": "^5.3.0",
"@tanstack/react-query": "^5.102.8",
"boneyard-js": "^1.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dexie": "^4.0.0",
"fastify": "^5.0.0",
"framer-motion": "^13.1.1",
"goey-toast": "^0.5.0",
"immer": "^10.0.0",
"radix-ui": "^1.6.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hotkeys-hook": "^5.3.3",
"reicon-react": "^1.2.5",
"tailwind-merge": "^3.6.0",
"zod": "^4.0.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@fastify/formbody": "^9.0.0",
"@playwright/test": "^1.48.0",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^5.0.0",
"concurrently": "^9.0.0",
"esbuild": "^0.25.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"fake-indexeddb": "^6.0.0",
"globals": "^15.0.0",
"jsdom": "^25.0.0",
"prettier": "^3.0.0",
"tailwindcss": "^4.3.3",
"tsx": "^4.0.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.0.0",
"vite": "^7.0.0",
"vitest": "^3.0.0"
}
}