-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.43 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.43 KB
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
67
68
69
70
71
72
73
74
75
76
{
"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": {
"build": "npm run clean && npm run build-babel",
"build-babel": "babel -d ./build ./server -s",
"clean": "rm -rf .nyc_output build coverage && mkdir build",
"coverage": "nyc report --reporter=text-lcov | coveralls && nyc report --reporter=lcov",
"dev-start": "nodemon --exec babel-node server/app.js",
"db:migrate": "sequelize db:migrate",
"db:migrate:undo": "sequelize db:migrate:undo:all",
"db:reset": "npm run db:migrate:undo && npm run db:migrate",
"pretest": "cross-env NODE_ENV=test npm run db:reset",
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text mocha ./server/test/*.test.js",
"start": "node ./build/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RIDUMATICS/Quick-Credit.git"
},
"keywords": [
"REST_API",
"NodeJS",
"REACT",
"MERN"
],
"author": "Ridwan Onikoyi <ridwanonikoyi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RIDUMATICS/Quick-Credit/issues"
},
"homepage": "https://github.com/RIDUMATICS/Quick-Credit#readme",
"dependencies": {
"@babel/polyfill": "7.7.0",
"@sendgrid/mail": "6.4.0",
"bcryptjs": "2.4.3",
"cookie-parser": "1.4.4",
"cors": "2.8.5",
"debug": "4.1.1",
"dotenv": "8.2.0",
"express": "4.17.1",
"jsonwebtoken": "8.5.1",
"morgan": "1.9.1",
"passport": "0.4.1",
"passport-facebook-token": "3.3.0",
"passport-google-plus-token": "2.1.0",
"passport-jwt": "4.0.0",
"passport-local": "1.0.0",
"pg": "7.14.0",
"pg-hstore": "2.3.3",
"sequelize": "5.21.2",
"sequelize-cli": "5.5.1",
"swagger-ui-express": "4.1.2"
},
"devDependencies": {
"@babel/cli": "7.7.4",
"@babel/core": "7.7.4",
"@babel/node": "7.7.4",
"@babel/preset-env": "7.7.4",
"@babel/register": "7.7.4",
"chai": "4.2.0",
"chai-http": "4.3.0",
"coveralls": "3.0.9",
"cross-env": "6.0.3",
"eslint": "6.7.2",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2",
"faker": "4.1.0",
"mocha": "6.2.2",
"nodemon": "2.0.1",
"nyc": "15.0.0",
"supertest": "4.0.2"
}
}