-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
28 lines (28 loc) · 1.14 KB
/
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
{
"name": "sol-pay-bill",
"version": "1.0.0",
"description": "sol-pay allow for payment of several kinds of bills (including airtime, data bundles, Internet, electricity and cable TV) in Nigeria and across multiple African countries.",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start" : "cd server && node dist/server.js",
"heroku-postbuild": "cd server && npm install && npm run build",
"install-server": "cd server && npm install",
"install-client": "npm install --prefix client",
"install": "npm run install-client && npm run install-server",
"server": "cd server && npm run dev",
"client" : "npm start --prefix client",
"dev" : "npm run server & npm run client",
"deploy" : "npm run build --prefix client && npm run dev --prefix server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Samuellyworld/sol-pay-bill.git"
},
"author": "Samuel Aspirin & David Kazeem",
"license": "MIT",
"bugs": {
"url": "https://github.com/Samuellyworld/sol-pay-bill/issues"
},
"homepage": "https://github.com/Samuellyworld/sol-pay-bill#readme"
}