-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
94 lines (94 loc) · 2.91 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "labs13-sauti-studio-be",
"version": "1.0.0",
"description": "🚫 Note: All lines that start with 🚫 are instructions and should be deleted before this is posted to your portfolio. This is intended to be a guideline. Feel free to add your own flare to it.",
"main": "index.js",
"dependencies": {
"@okta/okta-sdk-nodejs": "^3.2.0",
"africastalking": "^0.4.0",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"cookie-session": "^1.3.3",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"faker": "^4.1.0",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.12",
"knex-cleaner": "^1.1.4",
"lodash": "^4.17.13",
"morgan": "^1.9.1",
"nodemailer": "^6.4.6",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth": "^2.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-okta-oauth": "0.0.1",
"passport-openidconnect": "0.0.2",
"pg": "^7.18.2",
"pusher": "^2.2.0",
"request-promise": "^4.2.4",
"ussd-menu-builder": "^1.1.1"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"ejs": "^2.6.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.3.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"prettier": "^1.16.4",
"supertest": "^4.0.2",
"typescript": "^3.8.3"
},
"scripts": {
"server": "nodemon index.js",
"start": "node index.js",
"migrate": "npx knex migrate:latest",
"rollback": "npx knex migrate:rollback",
"seed": "npx knex seed:run",
"reset": "npx knex migrate:latest && npx knex seed:run",
"test": "cross-env DB_ENV=testing jest --watch --verbose --detectOpenHandles --forceExit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"coverage": "jest --coverage --detectOpenHandles --forceExit || true"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!**/__tests__/**",
"!**/coverage/**",
"!**/migrations/**",
"!**/seeds/**"
],
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/labs13-sauti-studio/labs13-sauti-studio-BE.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/labs13-sauti-studio/labs13-sauti-studio-BE/issues"
},
"homepage": "https://github.com/labs13-sauti-studio/labs13-sauti-studio-BE#readme"
}