-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 938 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "kido-farms",
"version": "1.0.0",
"description": "Kido Farms E-Commerce Platform – Full Stack (Next.js + Express)",
"private": true,
"scripts": {
"dev": "concurrently --names \"BACKEND,FRONTEND\" --prefix-colors \"cyan,green\" \"npm run dev --prefix backend\" \"npm run dev --prefix frontend\"",
"start": "concurrently --names \"BACKEND,FRONTEND\" --prefix-colors \"cyan,green\" \"npm run start --prefix backend\" \"npm run start --prefix frontend\"",
"install:all": "npm install && npm install --prefix frontend && npm install --prefix backend",
"build": "npm run build --prefix frontend"
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"concurrently": "^9.1.2",
"cross-env": "^10.1.0"
},
"dependencies": {
"@capacitor/android": "^8.2.0",
"@capacitor/cli": "^8.2.0",
"@capacitor/core": "^8.2.0"
}
}