-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 816 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 816 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
{
"name": "whatspay",
"version": "1.0.0",
"description": "WhatsApp payment integration plugin enabling secure transactions via PayPal and MPesa",
"scripts": {
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "cd backend && npm run dev",
"start:frontend": "cd frontend/web && npm start",
"dev": "npm run start",
"install:all": "npm install && cd backend && npm install && cd ../frontend/web && npm install",
"dev:windows": "start-dev.bat",
"dev:unix": "bash start-dev.sh",
"mongodb:setup": "setup-mongodb.bat",
"mongodb:start": "mongod --config backend/config/mongod.conf"
},
"workspaces": [
"backend",
"frontend/*"
],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.0.1"
}
}