-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.88 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "quick-credit",
"version": "1.0.0",
"description": "Quick Credit is an online lending platform that provides short term soft loans to individuals. This helps solve problems of financial inclusion as a way to alleviate poverty and empower low income earners.",
"main": "index.js",
"scripts": {
"test": "nyc mocha --require @babel/register ./server/tests/*test.js --exit",
"coverage": "npm test && nyc report --reporter=text-lcov | coveralls",
"eslint": "eslint",
"start:dev": "nodemon --exec babel-node server/server.js",
"build": "babel server --out-dir dist",
"start": "node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suleyunus/quick-credit.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/suleyunus/quick-credit/issues"
},
"homepage": "https://github.com/suleyunus/quick-credit#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"make-runnable": "^1.3.6",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.0",
"nyc": "^14.1.1"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"pg": "^7.11.0",
"supertest": "^4.0.2"
},
"engines": {
"node": "10.15.1"
},
"nyc": {
"exclude": [
"dist",
"**/*.test.js"
]
}
}