-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
81 lines (81 loc) · 2.38 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
{
"name": "rambo-authors-haven",
"version": "1.0.0",
"description": "A Social platform for the creative at heart",
"main": "index.js",
"scripts": {
"lint": "eslint '**/*.js'",
"lint:fix": "prettier-eslint '**/*.js' --write",
"build": "babel server --out-dir dist && npm run copy:docs",
"copy:docs": "cp -r server/docs/ dist/docs/",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"db:migrate": "sequelize db:migrate",
"db:migrate-undo": "sequelize db:migrate:undo:all",
"db:rollback": "npm run db:migrate-undo && npm run db:migrate && npm run db:seed",
"db:seed": "sequelize db:seed:all",
"start": "node dist/index.js",
"start:dev": "DEBUG=dev nodemon --exec babel-node server",
"test": "npm run db:rollback && nyc mocha --timeout 10000 -r esm --exit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": "Andela Simulations Programme",
"license": "MIT",
"dependencies": {
"@hapi/joi": "^15.1.0",
"@sendgrid/mail": "^6.4.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.14.0",
"cors": "^2.8.5",
"datauri": "^2.0.0",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"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",
"sequelize": "^5.10.2",
"sequelize-cli": "^5.5.0",
"sequelize-slugify": "^0.7.0",
"sqlite3": "^4.0.9",
"swagger-ui-express": "^4.0.7",
"yamljs": "^0.3.0"
},
"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",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.5",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"esm": "^3.2.25",
"faker": "^4.1.0",
"husky": "^3.0.1",
"lint-staged": "^9.2.1",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^10.0.6",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"prettier-eslint-cli": "^5.0.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0"
}
}