-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 3.33 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
95
96
97
98
99
100
101
102
103
104
105
{
"name": "freementor-api",
"version": "1.0.0",
"description": "Free Mentors is a social initiative where accomplished professionals become role models to young people to provide free mentorship sessions.",
"main": "./server/server.js",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/register": "^7.7.0",
"@hapi/joi": "^15.1.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-register": "^6.26.0",
"babel-upgrade": "^1.0.1",
"bcrypt": "^3.0.6",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"braces": "^2.3.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"config": "^3.2.2",
"cookie-parser": "^1.4.4",
"coveralls": "^3.0.6",
"custom-env": "^1.0.2",
"dotenv": "^8.1.0",
"eslint-auto-fix": "^1.0.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"express": "^4.17.1",
"heroku-cli": "^7.0.9",
"idempotent-babel-polyfill": "^7.4.4",
"isparta": "^4.1.1",
"istanbul": "^0.4.5",
"js-yaml": "^3.13.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"node-datetime": "^2.1.2",
"nodemon": "^1.19.2",
"nyc": "^14.1.1",
"pg": "^7.12.1",
"prettier": "^1.18.2",
"regenerator-runtime": "^0.13.3",
"swagger-node-express": "^2.1.3",
"swagger-tools": "^0.10.4",
"swagger-ui": "^3.23.9",
"swagger-ui-express": "^4.0.7",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.3",
"@hapi/joi": "^15.1.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"babel-watch": "^7.0.0",
"chai": "^4.2.0",
"dotenv": "^8.1.0",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"isparta": "^4.1.1",
"istanbul": "^0.4.5",
"js-yaml": "^3.13.1",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"prettier": "^1.18.2"
},
"scripts": {
"start": "node --require @babel/polyfill --require @babel/register ./server/server.js ",
"dev-start": "nodemon --exec babel-watch ./server/server.js",
"test": "nyc mocha server/test --require @babel/polyfill --require @babel/register --timeout 10000 --exit",
"coverage": "nyc npm run test && nyc report --reporter=text-lcov | coveralls",
"showCoverage": "start coverage/server/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kimenyikevin/FreeMentor.git"
},
"keywords": [
"JavaScript"
],
"author": "kimenyi kevin",
"license": "ISC",
"bugs": {
"url": "https://github.com/kimenyikevin/FreeMentor/issues"
},
"homepage": "https://github.com/kimenyikevin/FreeMentor#readme"
}