-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 913 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 913 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
{
"name": "hr-system-root",
"version": "1.0.0",
"description": "HR System - Full Stack Application",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd Backend && npm run start:dev",
"dev:frontend": "cd Frontend && npm run dev -- -p 3001",
"install:all": "npm install && cd Backend && npm install && cd ../Frontend && npm install",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd Backend && npm run build",
"build:frontend": "cd Frontend && npm run build"
},
"devDependencies": {
"@types/multer": "^2.0.0",
"concurrently": "^9.1.0"
},
"dependencies": {
"@nestjs/axios": "^4.0.1",
"axios": "^1.13.2",
"cloudinary": "^2.8.0",
"json2csv": "^6.0.0-alpha.2",
"multer": "^2.0.2",
"remark-gfm": "^4.0.1",
"streamifier": "^0.1.1"
}
}