-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
executable file
·80 lines (80 loc) · 2.56 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
{
"name": "express-authorshaven",
"version": "1.0.0",
"description": "A Social platform for the creative at heart",
"main": "index.js",
"scripts": {
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"build": "babel -d ./build ./src -s",
"start": "node ./build/index.js",
"pretest": "cross-env NODE_ENV=test npm run undo:migrate && cross-env NODE_ENV=test npm run db:migrate && npm run seed",
"test": "cross-env NODE_ENV=test nyc mocha --require @babel/register ./src/tests --timeout 15000 --exit",
"dev": "cross-env NODE_ENV=development nodemon ./src/index --exec babel-node",
"lint": "npx eslint ./src --fix",
"debug": "DEBUG=app:* npm run dev",
"db:migrate": "./node_modules/.bin/sequelize db:migrate",
"undo:migrate": "./node_modules/.bin/sequelize db:migrate:undo:all",
"seed": "cross-env NODE_ENV=test ./node_modules/.bin/sequelize db:seed:all"
},
"author": "Andela Simulations Programme",
"license": "MIT",
"dependencies": {
"@babel/runtime-corejs3": "^7.5.5",
"@hapi/joi": "^15.1.1",
"bcrypt": "^3.0.6",
"body-parser": "^1.18.3",
"core-js": "^3.2.1",
"cors": "^2.8.4",
"cross-env": "^5.2.0",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"ejs": "^2.6.1",
"errorhandler": "^1.5.0",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.15",
"method-override": "^2.3.10",
"methods": "^1.1.2",
"nodemailer": "^6.3.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"request": "^2.87.0",
"rewire": "^4.0.1",
"sequelize": "^5.16.0",
"sequelize-cli": "^5.5.0",
"sinon": "^7.4.2",
"swagger-ui-express": "^4.0.7",
"underscore": "^1.9.1",
"xoauth2": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"coveralls": "^3.0.6",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"morgan": "^1.9.1",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"request": "^2.88.0",
"sinon": "^7.4.2",
"sinon-chai": "^3.3.0",
"sinon-express-mock": "^2.2.1"
}
}