-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 834 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 834 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
32
33
{
"name": "xendit-master",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev-api": "yarn --cwd api/ dev",
"build-api": "yarn --cwd api/ build",
"dev-shop": "yarn --cwd shop/ dev",
"build-shop": "yarn --cwd shop/ build",
"dev": "concurrently --kill-others \"yarn dev-api\" \"yarn dev-shop\"",
"test-api": "yarn --cwd api/ test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Flashrob/xendit-master.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Flashrob/xendit-master/issues"
},
"homepage": "https://github.com/Flashrob/xendit-master#readme",
"devDependencies": {
"concurrently": "^7.0.0",
"pre-push": "^0.1.1"
},
"pre-push": [
"build-api",
"test-api"
]
}