-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·88 lines (88 loc) · 2.88 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
{
"name": "express-authorshaven",
"version": "1.0.0",
"description": "A Social platform for the creative at heart",
"main": "index.js",
"scripts": {
"start": "npm build && node /app/build/index.js",
"myBuild": "babel -d build/ src",
"eslint": "eslint --ignore-path .gitignore .",
"db-seed": "NODE_ENV=testing npx sequelize-cli db:seed:undo:all && NODE_ENV=testing sequelize db:seed:all",
"db-seed-dev": "npx sequelize-cli db:seed:undo:all && sequelize db:seed:all",
"test": "NODE_ENV=testing npm run dropTables && NODE_ENV=testing npm run db-migrate && NODE_ENV=testing npm run db-seed && NODE_ENV=testing nyc --reporter=text --reporter=html --require @babel/polyfill --require @babel/register mocha ./src/tests/* --timeout 200000 --exit",
"db-migrate": "sequelize db:migrate",
"dropTables": "sequelize db:migrate:undo:all",
"dev-start": "nodemon --exec babel-node ./src/index.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "Andela Simulations Programme",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.7.0",
"@hapi/joi": "^16.1.7",
"babel-eslint": "^10.0.3",
"bcrypt": "^3.0.7",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"dotenv": "^6.0.0",
"ejs": "^2.6.1",
"email-templates": "^6.0.3",
"errorhandler": "^1.5.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-session": "^1.15.6",
"express-validator": "^6.2.0",
"http-status-codes": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"method-override": "^2.3.10",
"methods": "^1.1.2",
"mocha": "^6.2.2",
"morgan": "^1.9.1",
"nodemailer": "^6.3.1",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-facebook-token": "^3.3.0",
"passport-google": "^0.3.0",
"passport-google-oauth20": "^2.0.0",
"passport-google-plus-token": "^2.1.0",
"passport-local": "^1.0.0",
"passport-twitter-token": "^1.3.0",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"pg-native": "^3.0.0",
"request": "^2.87.0",
"sequelize": "^5.21.2",
"sequelize-cli": "^5.5.1",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"socket.io": "^2.3.0",
"swagger-jsdoc": "^3.4.0",
"swagger-ui-express": "^4.1.2",
"underscore": "^1.9.1",
"ws": "^7.2.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"@babel/runtime": "^7.7.2",
"babel-loader": "^8.0.6",
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"nodemon": "^1.19.4",
"nyc": "^14.1.1"
},
"nyc": {
"exclude": [
"**/**/**/swaggerOptions.js"
]
}
}