-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.08 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.08 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
{
"name": "bn",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test-coveralls": "c8 --src src/ --x coverage/ npm run test",
"test": "mocha --recursive --exit --timeout 500000 --require @babel/register tests/**/*.js",
"test:db": "npm run migrate:all && npm run test",
"build": "babel src -d dist",
"start": "NODE_ENV=development nodemon --exec babel-node src/server.js",
"sequelize": "babel-node node_modules/.bin/sequelize",
"migrate": "npm run sequelize db:migrate",
"down": "npm run sequelize db:migrate:undo:all",
"seed": "npm run sequelize db:seed:all",
"migrate:all": "npm run down && npm run migrate && npm run seed",
"lint": "npx eslint --fix",
"pgback-up": "npx babel-node src/pgbackup/backup.js",
"pgrestore": "npx babel-node src/pgbackup/backup.restore.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atlp-rwanda/e-comm-team-brogrammers-bn.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/atlp-rwanda/e-comm-team-brogrammers-bn/issues"
},
"homepage": "https://github.com/atlp-rwanda/e-comm-team-brogrammers-bn#readme",
"dependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.21.0",
"@faker-js/faker": "^7.6.0",
"@sendgrid/mail": "^7.7.0",
"bcrypt": "^5.1.0",
"c8": "^7.13.0",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"cloudinary": "^1.35.0",
"colors": "^1.4.0",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"cron": "^2.2.0",
"dotenv": "^16.0.3",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"http": "^0.0.1-security",
"joi": "^17.8.3",
"joi-password": "^4.0.0",
"jsonwebtoken": "^9.0.0",
"logger": "^0.0.1",
"mocha": "^10.2.0",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.2",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.1",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"passport": "^0.5.3",
"passport-google-oauth": "^2.0.0",
"passport-google-oauth2": "^0.2.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.10.0",
"preferences": "^2.0.2",
"sequelize": "^6.29.0",
"sinon": "^15.0.3",
"socket.io": "^4.6.1",
"stripe": "^11.16.0",
"unsubscriber": "^1.0.0",
"uuidv4": "^6.2.13",
"winston": "^3.8.2",
"winston-papertrail": "^1.0.5",
"winston-papertrail-transport": "^1.0.9"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-transform-runtime": "^7.21.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^6.1.1",
"coveralls": "^3.1.1",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"nodemon": "^2.0.21",
"sequelize-cli": "^6.6.0",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2"
}
}