-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·93 lines (93 loc) · 2.94 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
{
"name": "barefoot-nomad",
"version": "1.0.0",
"description": "Make travel and accommodation easy and convenient.",
"main": "app.js",
"scripts": {
"test": "NODE_ENV=test npm run migrate && NODE_ENV=test nyc --reporter=html --reporter=text mocha --require @babel/register --timeout 3000 ./src/tests/mainTest.test.js --exit",
"coverage": "npm run test && nyc report --reporter=text-lcov | coveralls",
"migrate": "sequelize db:migrate:undo:all && sequelize db:migrate && sequelize db:seed:all",
"dropTables": "sequelize db:migrate:undo:all",
"createTables": "sequelize db:migrate && sequelize db:seed:all",
"build": "babel src --out-dir dist --source-maps inline --copy-files",
"start": "nodemon dist/app.js",
"dev-start": "nodemon --exec babel-node src/app.js",
"es-lint": "./node_modules/.bin/eslint ./src",
"eslint-solve": "eslint ./ --fix"
},
"author": "Andela code-knights",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"@babel/runtime": "^7.8.4",
"@hapi/joi": "^17.1.0",
"@hapi/joi-date": "^2.0.1",
"@sendgrid/mail": "^6.5.2",
"bcrypt": "^3.0.8",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.20.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"expect.js": "^0.3.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"faker": "^4.1.0",
"i18n": "^0.8.5",
"joi": "^14.3.1",
"joi-date-extensions": "^1.2.0",
"joi-password-complexity": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"localStorage": "^1.0.4",
"lodash": "^4.17.15",
"mailgen": "^2.0.10",
"mock-req": "^0.2.0",
"moment": "^2.24.0",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^2.2.1",
"nodemon": "^2.0.2",
"npm": "^6.13.7",
"nyc": "^15.0.0",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^7.18.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.3",
"sequelize-cli": "^5.5.1",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"swagger-jsdoc": "^3.5.0",
"swagger-ui-express": "^4.1.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"mocha": "^7.0.1",
"mocha-lcov-reporter": "^1.3.0",
"mock-req-res": "^1.1.4",
"node-env-run": "^3.0.2",
"node-mocks-http": "^1.8.1",
"prettier": "^1.19.1",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0",
"sinon-express-mock": "^2.2.1"
},
"engines": {
"node": "12.14.1",
"npm": "6.13.4"
}
}