forked from JuanBau514/deploy-E-comerce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 905 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 905 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
{
"name": "inaldulce_comercio",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "node backend/server.js",
"start:all": "npm run build && npm run start",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "vite --config vite.config.js",
"dev:backend": "node backend/server.js",
"build": "vite build --config vite.config.js",
"preview": "vite preview --config vite.config.js"
},
"devDependencies": {
"concurrently": "^7.6.0",
"vite": "^6.0.5"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"html2pdf.js": "^0.10.2",
"inaldulce_comercio": "file:",
"jspdf": "^2.5.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.12.0",
"nodemailer": "^6.10.0",
"notenv": "^2.0.3",
"xlsx": "^0.18.5"
}
}