forked from BuildForSDG/Team-037-Product-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.95 KB
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
97
98
99
100
101
102
{
"name": "js-starter",
"version": "0.0.1",
"description": "A boilerplate for starting js code",
"keywords": [
"js-starter",
"boilerplate"
],
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "__tests__"
},
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"pretest": "cross-env NODE_ENV=test npm run db:reset",
"heroku-postbuild": "npm run db:reset",
"test:watch": "jest --watch",
"test:cover": "jest --coverage",
"lint": "eslint \"src/**/*.js\"",
"lint-fix": "eslint --fix \"src/**/*.js\"",
"start": "babel-node src",
"dev": "cross-env DEBUG=dev nodemon --exec babel-node src",
"db:migrate": "sequelize db:migrate",
"db:migrate:undo": "node_modules/.bin/sequelize db:migrate:undo:all",
"db:undo": "sequelize db:migrate:undo:all",
"db:seed": "sequelize db:seed:all",
"undo:seeder": "node_modules/.bin/sequelize db:seed:undo:all && npm run seed",
"db:reset": "npm run db:migrate:undo && npm run db:migrate && npm run undo:seeder",
"seed": "node_modules/.bin/sequelize db:seed:all"
},
"author": {
"name": "Build For SDG",
"email": "buildforsdg@andela.com"
},
"homepage": "https://github.com/BuildForSDG/js-starter#readme",
"repository": {
"type": "git",
"url": "https://github.com/BuildForSDG/js-starter.git"
},
"bugs": {
"url": "https://github.com/BuildForSDG/js-starter/issues"
},
"license": "MIT",
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@hapi/joi": "^17.1.1",
"@hapi/joi-date": "^2.0.1",
"@sendgrid/mail": "^7.1.1",
"@wangcch/format-currency": "^1.0.1",
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"bitly": "^7.1.0",
"cloudinary": "^1.21.0",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"crypto": "^1.0.1",
"crypto-random-string": "^3.2.0",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.7-alpha.3",
"express-validator": "^6.4.1",
"google-auth-library": "^6.0.0",
"googleapis": "^50.0.0",
"install": "^0.13.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"nodemailer": "^6.4.6",
"nodemon": "^2.0.3",
"npm": "^6.14.5",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"path": "^0.12.7",
"pg": "^8.0.3",
"pg-hstore": "^2.3.3",
"sendgrid": "^5.2.3",
"sequelize": "^5.21.8",
"shortid": "^2.2.15",
"supertest": "^4.0.2",
"swagger-ui-express": "^4.1.4",
"validator": "^13.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"babel-jest": "^25.4.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.4.0",
"parcel-bundler": "^1.12.4",
"sequelize-cli": "^5.5.1"
},
"browserslist": [
"last 1 Chrome versions"
]
}