-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 763 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "farmer-management-system",
"version": "1.0.0",
"description": "Full-stack Farmer Management System",
"private": true,
"scripts": {
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "concurrently \"npm run build:backend\" \"npm run build:frontend\"",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"test": "cd backend && npm test"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {
"nodemailer": "^7.0.10"
}
}