-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 953 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "file-upload-project",
"version": "1.0.0",
"description": "File upload application with Angular frontend and Node.js backend",
"main": "index.js",
"scripts": {
"install-all": "npm install && cd backend && npm install && cd ../frontend/file-upload-app && npm install",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "cd backend && npm start",
"start:frontend": "cd frontend/file-upload-app && npm start",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend/file-upload-app && npm start",
"build": "cd frontend/file-upload-app && npm run build",
"test": "cd frontend/file-upload-app && npm test"
},
"keywords": ["file-upload", "angular", "nodejs", "express"],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}