-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 982 Bytes
/
package.json
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
32
33
{
"name": "jamalipay",
"version": "1.0.0",
"description": "Payment gateway like Stripe, Lemon Squezzy, etc",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"docker:build": "docker-compose -p jamalipay build --no-cache",
"docker:up": "docker-compose -p jamalipay up -d",
"docker:watch": "docker-compose watch",
"docker:down": "docker-compose -p jamalipay down",
"backend-dev": "yarn workspace backend dev",
"backend-start": "yarn workspace backend start",
"backend-lint": "yarn workspace backend lint",
"frontend-dev": "yarn workspace frontend dev",
"dev": "concurrently \"yarn:backend-dev\" \"yarn:frontend-dev\""
},
"keywords": [],
"author": "Muhammad Jufry",
"license": "MIT",
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.0",
"semantic-release": "^23.0.0"
},
"dependencies": {
"concurrently": "^8.2.2"
}
}