-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 729 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 729 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
{
"name": "billgate.xyz",
"version": "1.0.0",
"author": "mr.cuongnt",
"license": "MIT",
"homepage": "https://billgate.xyz",
"repository": {
"type": "git",
"url": "https://github.com/cuongdev/billgate"
},
"keywords": ["billgate", "vpbank", "auto bank gateway"],
"bugs": {
"url": "https://github.com/cuongdev/billgate/issues"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"install-all": "npm install --prefix server && npm install --prefix client",
"dev": "concurrently \"npm run dev --prefix server\" \"npm run dev --prefix client\"",
"build": "npm run build --prefix client && tsc --project server",
"start": "npm start --prefix server"
},
"devDependencies": {
"concurrently": "^8.2.0"
}
}