-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 864 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 864 Bytes
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
{
"name": "elements-invoice",
"version": "0.1.0",
"description": "One invoice, three fitted renders (email · web · PDF) from a single React component tree, built with Unlayer Elements.",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"render": "tsx scripts/render.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@unlayer/react-elements": "latest",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.7.0",
"playwright": "^1.48.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vite": "^5.4.21",
"vitest": "^2.1.0"
}
}