-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.19 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.19 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "boxvault",
"version": "0.43.1",
"description": "BoxVault is a cloud-based storage solution for VM Templates and ISOs.",
"private": true,
"main": "backend/server.js",
"scripts": {
"sync-versions": "node scripts/sync-versions.js",
"generate-docs": "cd backend && npm run generate-docs",
"cinstall:backend": "cd backend && npm ci",
"cinstall:backend:nodev": "cd backend && npm ci --omit=dev",
"cinstall:frontend": "cd frontend && npm run cinstall",
"cinstall:frontend:nodev": "cd frontend && npm run cinstall:nodev",
"cinstall:all": "npm ci && npm run cinstall:backend && npm run cinstall:frontend",
"cinstall:all:nodev": "npm run cinstall:backend:nodev && npm run cinstall:frontend:nodev",
"build": "npm run sync-versions && npm run build:frontend",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"start": "cd backend && npm run start",
"preproduction": "concurrently \"npm run start\" \"npm run watch:frontend\"",
"watch:backend": "cd backend && npm run watch-build",
"watch:frontend": "cd frontend && npm run watch-build",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "cd frontend && npm run start",
"dev:backend": "cd backend && npm run watch-build",
"install": "npm run install-frontend && npm run install-backend",
"install-frontend": "cd frontend && npm install",
"install-backend": "cd backend && npm install",
"lint:backend": "cd backend && npm run lint",
"lint:backend:fix": "cd backend && npm run lint:fix",
"lint:frontend": "cd frontend && npm run lint",
"lint:frontend:fix": "cd frontend && npm run lint:fix",
"lint:all": "npm run lint:backend && npm run lint:frontend",
"lint": "npm run lint:all",
"lint:fix:all": "npm run lint:backend:fix && npm run lint:frontend:fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write ."
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@vitejs/plugin-react": "^6.0.1",
"axios": "^1.13.6",
"bcryptjs": "^3.0.3",
"cors": "^2.8.6",
"express": "^5.2.1",
"fs": "^0.0.1-security",
"js-yaml": "^4.1.1",
"jsonwebtoken": "^9.0.3",
"multer": "^2.1.1",
"mysql2": "^3.20.0",
"nodemailer": "^8.0.4",
"react": "^19.2.4",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.2.4",
"react-icons": "^5.6.0",
"react-router-dom": "^7.13.2",
"sequelize": "^6.37.8",
"validator": "^13.15.26",
"vite": "^8.0.3",
"vite-plugin-svgr": "^4.5.0",
"web-vitals": "^5.2.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"sass": "1.97.3"
},
"author": "makr91",
"license": "GPL-3.0",
"pkg": {
"assets": [
"backend/app/views/**/*"
],
"targets": [
"node16-linux-x64",
"node16-macos-x64",
"node16-win-x64",
"node18-sunos-x64"
]
},
"files": [
"backend/",
"backend/app/views/",
"frontend/package.json"
]
}