-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 3.1 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
{
"name": "ecommerce-app-legends-bn",
"version": "1.0.0",
"description": "## Introduction",
"main": "index.js",
"scripts": {
"build": "babel src -d dist",
"start": "node dist/index.js",
"dev": "nodemon --exec babel-node src/index.js",
"migrate:undo": "npx sequelize-cli db:migrate:undo:all",
"generate:seed": "npx sequelize-cli seed:generate --name demo-user",
"seed": "npm run migrate && npx sequelize-cli db:seed:all",
"lint:fix": "eslint src --fix --cache",
"posttest": "npx update-badge",
"test": "cross-env NODE_ENV=test sequelize db:migrate && cross-env NODE_ENV=test nyc --require @babel/register --reporter=text --reporter=html --reporter=clover --reporter=lcov --reporter=teamcity --reporter=json-summary mocha --exit --timeout 60000 --recursive test/*.js --coverage",
"docker:compose:up": "docker compose up",
"docker:compose:down": "docker compose down",
"docker:compose:clean": "docker compose down --volumes --rmi all --remove-orphans"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atlp-rwanda/ecommerce-app-legends-bn.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/atlp-rwanda/ecommerce-app-legends-bn/issues"
},
"homepage": "https://github.com/atlp-rwanda/ecommerce-app-legends-bn#readme",
"dependencies": {
"@babel/node": "^7.20.7",
"babel-node": "^0.0.1-security",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cloudinary": "^1.35.0",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"i18next": "^22.4.10",
"i18next-fs-backend": "^2.1.1",
"i18next-http-middleware": "^3.2.2",
"jsend-express": "^1.2.4",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.1",
"nodemon": "^2.0.20",
"pg": "^8.9.0",
"pg-hstore": "^2.3.4",
"redis": "^4.6.5",
"sequelize": "^6.29.0",
"sequelize-cli": "^6.6.0",
"shortid": "^2.2.16",
"slugify": "^1.6.5",
"speakeasy": "^2.0.0",
"stripe": "^11.17.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"babel-eslint": "^10.1.0",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"check-code-coverage": "^1.10.4",
"eslint": "^8.35.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"events": "^3.3.0",
"mocha": "^10.2.0",
"moment": "^2.29.4",
"node-cron": "^3.0.2",
"nyc": "^15.1.0",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"prettier": "^2.8.4",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"swagger-ui-express": "^4.6.2"
},
"directories": {
"test": "test"
}
}