-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 894 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 894 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
{
"name": "parcel-management-system",
"version": "1.0.0",
"description": "A full-stack application for managing parcels between different stations",
"main": "index.js",
"scripts": {
"server": "cd server && npm run dev",
"client": "cd client && npm run dev",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"install:all": "npm install && cd server && npm install && cd ../client && npm install",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"docker:dev": "docker-compose up --build"
},
"keywords": [
"parcel",
"management",
"fullstack",
"express",
"react"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.10.0",
"concurrently": "^8.2.0",
"nodemailer": "^7.0.4"
}
}