-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.38 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.38 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
{
"name": "quick_credit",
"version": "1.0.0",
"description": "Quick Credit is an online lending platform that provides short term soft loans to individuals.",
"main": "app.js",
"scripts": {
"create": "babel-node server/migrations/create.js",
"drop": "babel-node server/migrations/drop.js",
"seed": "babel-node server/seed/index.js",
"start": "concurrently \"babel-node server/server.js\" \"npm run create && npm run seed\"",
"server": "nodemon --exec npm start",
"dev": "concurrently \"npm run drop\" \"npm run create\" \"npm run seed\" \"npm run server\"",
"dev:test": "concurrently \"npm run drop\" && npm run create && npm run seed",
"test": "NODE_ENV=test npm run dev:test && nyc --reporter=text --reporter=lcov mocha --timeout 1500 --require babel-polyfill --require babel-register ./server/tests/**/*.test.js --exit",
"coveralls": "npm test && nyc report --reporter=text-lcov | coveralls",
"lint": "./node_modules/.bin/eslint server/**/*.js --fix",
"build": "babel ./server --out-dir dist"
},
"rules": {
"linebreak-style": 0,
"global-require": 0,
"eslint linebreak-style": [
0,
"error",
"windows"
]
},
"nyc": {
"exclude": [
"server/helpers/mailer.js",
"server/controllers/loanController.js",
"server/tests",
"server/config"
]
},
"author": "Isaie Runoro",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"bcryptjs": "^2.4.3",
"concurrently": "^4.1.0",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"jwt-simple": "^0.5.6",
"lodash": "^4.17.13",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"nodemon": "^1.18.11",
"pg": "^7.11.0",
"swagger-ui-express": "^4.0.3"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-airbnb-standard": "^3.0.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.0.0",
"sinon": "^7.3.2",
"supertest": "^4.0.2"
}
}