-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.85 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
{
"name": "FreeMentors-V2",
"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": "index.js",
"scripts": {
"start": " nodemon --exec babel-node app.js",
"deploy": "./node_modules/.bin/babel-node app.js",
"test": "NODE_ENV=test nyc mocha --require @babel/register ./server/tests/*.js --timeout 150000 --exit",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls ",
"build": "babel server -d build",
"lint": "npx eslint",
"drop": "babel-node server/db/dropTables.js dropTables"
},
"engines": {
"node": "10.16.3",
"npm": "6.10.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BurnerB/FreeMentors-V2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BurnerB/FreeMentors-V2/issues"
},
"homepage": "https://github.com/BurnerB/FreeMentors-V2#readme",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@hapi/joi": "^15.1.1",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"make-runnable": "^1.3.6",
"nodemon": "^1.19.1",
"pg": "^7.12.1",
"swagger-ui": "^3.23.6",
"swagger-ui-express": "^4.0.7"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.6",
"cross-env": "^5.2.1",
"eslint": "^6.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1"
}
}