-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
96 lines (96 loc) · 2.87 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
{
"name": "express-authorshaven",
"version": "1.0.0",
"description": "A Social platform for the creative at heart",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test npm run db:drop && npm run migration-rollback && npm run db-migration && nyc mocha src/**/*.spec.js --require @babel/register --exit --timeout 100000|| true",
"test-watch": "nodemon --exec \"npm test\"",
"table-reset": "sequelize db:drop && sequelize db:create",
"start": "nodemon --exec babel-node src/index.js",
"build": "npm run db-migration && npm run clean && npm run babel-build",
"clean": "rm -rf dist",
"babel-build": "babel src -d dist && node dist/index",
"heroku-postbuild": "echo skip post-build",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"db-migration": "sequelize db:migrate",
"migration-rollback": "sequelize db:migrate:undo:all",
"db:drop": "sequelize db:drop && sequelize db:create"
},
"author": "Andela Simulations Programme",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@sendgrid/mail": "^6.4.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cloudinary": "^1.14.0",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"dotenv": "^6.2.0",
"express": "^4.16.3",
"express-session": "^1.16.2",
"express-validator": "^6.1.0",
"faker": "^4.1.0",
"friendly-mail": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^9.0.2",
"mocha": "^6.1.4",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"node-cron": "^2.0.3",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-twitter": "^1.0.4",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"pusher": "^2.2.1",
"sequelize": "^5.8.12",
"sequelize-cli": "^5.5.0",
"sequelize-slugify": "^0.7.0",
"sequelize-test-helpers": "^1.1.2",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"swagger-ui-express": "^4.0.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --config .prettierrc --write",
"git add"
]
},
"nyc": {
"exclude": [
"src/db/models/index.js",
"src/tests/utils/db.utils.js",
"src/tests/utils/db.utils.js",
"src/config/passportStrategies.js"
]
},
"devDependencies": {
"coveralls": "^3.0.4",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"prettier": "^1.18.2"
}
}