-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
executable file
·95 lines (95 loc) · 3.34 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
{
"name": "express-authorshaven",
"version": "1.0.0",
"description": "Make company global travel and accommodation easy and convenient",
"main": "index.js",
"scripts": {
"clear:logs": "rm ./src/logs/app.log && touch ./src/logs/app.log",
"clean": "rm -rf dist coverage && mkdir dist coverage",
"build": "babel src -d dist --copy-files",
"start:dev": "NODE_ENV=development nodemon --exec babel-node src/index.js",
"start:staging": "NODE_ENV=staging node dist/index.js",
"start": "NODE_ENV=production node dist/index.js",
"docker:on": "docker-compose up -d",
"docker:off": "docker-compose down",
"docker:rebuild": "docker-compose up --rebuild",
"docker:destroy": "docker-compose down -v",
"lint": "eslint ./src --fix",
"nyc": "nyc --reporter=html --reporter=text mocha -r esm --cache false --timeout 35000 --recursive --exit",
"db:migrate": "sequelize db:migrate",
"db:seed": "sequelize db:seed:all --debug",
"undo:migration": "sequelize db:migrate:undo:all",
"db:prepare": "npm run undo:migration && npm run db:migrate",
"pretest": "npm run db:prepare && npm run db:seed",
"test": "npm run nyc",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"nyc": {
"exclude": [
"src/index.js",
"src/db/*",
"src/routes/api/index.js"
]
},
"author": "Andela Simulations Programme",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"app-root-path": "^2.2.1",
"bcrypt": "^3.0.6",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.4",
"core-js": "^3.2.1",
"cors": "^2.8.4",
"depd": "^2.0.0",
"dotenv": "^6.0.0",
"ejs": "^2.6.1",
"esm": "^3.2.25",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"express-session": "^1.15.6",
"express-validator": "^6.1.1",
"jsonwebtoken": "^8.3.0",
"morgan": "^1.9.1",
"npm-run-all": "^4.1.5",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"proxyquire": "^2.1.3",
"pug": "^2.0.4",
"regenerator-runtime": "^0.13.3",
"request": "^2.87.0",
"sequelize": "^5.15.1",
"sequelize-cli": "^5.5.0",
"swagger-ui-express": "^4.0.7",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.3",
"babel-plugin-transform-runtime": "^6.23.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"chai-subset": "^1.6.0",
"coveralls": "^3.0.6",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"sinon": "^7.4.1",
"sinon-chai": "^3.3.0",
"supertest": "^4.0.2"
}
}