-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.72 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
{
"name": "electric-be",
"version": "1.0.0",
"description": "This project is aimed at providing households with electrical insurance packages and plans that are flexible and affordable putting into consideration their current earning power.",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node \"./src/index.js\"",
"dev": "nodemon \"./src/index.js\"",
"lint": "eslint src/**/*.js",
"format": "eslint src/**/*.js --fix",
"prettier-format": "prettier -w ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/samspecial/electric-be.git"
},
"keywords": [
"electric",
"insurance"
],
"author": "'Samuel Osinloye'",
"license": "ISC",
"bugs": {
"url": "https://github.com/samspecial/electric-be/issues"
},
"homepage": "https://github.com/samspecial/electric-be#readme",
"dependencies": {
"@sendgrid/mail": "^7.4.6",
"axios": "^0.21.4",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"connect-redis": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limiter": "^1.3.1",
"express-session": "^1.17.2",
"express-validator": "^6.12.0",
"flutterwave-node-v3": "^1.0.9",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"open": "^8.4.0",
"pg": "^8.6.0",
"pg-hstore": "^2.3.4",
"redis": "^3.1.2",
"sequelize": "^6.6.5",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"nodemon": "^2.0.12",
"prettier": "^2.3.2"
}
}