-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.96 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
{
"name": "e-commerce",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "nodemon src/server.js",
"start:prod": "cross-env NODE_ENV=production node src/server.js",
"test": "jest --detectOpenHandles",
"test:watch": "jest --watchAll"
},
"author": "Ahmed Ali",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.685.0",
"aws-sdk": "^2.1691.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.4.1",
"express-validator": "^7.2.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.2",
"mongodb-memory-server": "^10.1.2",
"mongoose": "^8.7.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.16",
"nodemailer-mailgun-transport": "^2.1.5",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"sharp": "^0.33.5",
"slugify": "^1.6.6",
"stripe": "^17.3.1",
"uuid": "^9.0.1",
"validator": "^13.12.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"supertest": "^7.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.{json, md}": "prettier --write"
},
"engines": {
"node": "18.x"
}
}