-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 968 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
34
35
36
37
{
"name": "loan-calculator",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": "v10.15.1",
"npm": "6.9.0"
},
"scripts": {
"start": "node server.js",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build",
"server": "nodemon index.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/tweneboah/loan-calculator.git"
},
"author": "Emmanuel & Gift",
"license": "MIT",
"bugs": {
"url": "https://github.com/tweneboah/loan-calculator/issues"
},
"homepage": "https://github.com/tweneboah/loan-calculator#readme",
"dependencies": {
"config": "^3.1.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.6.3"
},
"devDependencies": {
"concurrently": "^4.1.1",
"nodemon": "^1.19.1"
}
}