-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 938 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 938 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
33
34
35
36
37
38
39
40
41
{
"name": "invoice-generator",
"version": "1.0.0",
"description": "Invoice generator application with USD and INR support",
"type": "module",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"serve": "node --watch server.js",
"dev:full": "npm run build && npm run serve"
},
"keywords": [
"invoice",
"pdf",
"generator"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@emailjs/browser": "^3.11.0",
"@supabase/supabase-js": "^2.49.8",
"express": "^4.18.2",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.5.0",
"react-router-dom": "^6.10.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.0.0",
"gh-pages": "^6.3.0",
"vite": "^4.3.2"
}
}