-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 2.02 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
{
"name": "e-commerce",
"version": "1.0.2",
"description": "MERN Stack E-Commerce webpage",
"main": "backend/server.js",
"scripts": {
"start": "node backend/server.js",
"dev": "nodemon backend/server.js --ignore frontend",
"test": "mocha 'backend/test/unit/user.test.js'"
},
"author": "Anant Duhan",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.449.0",
"@aws-sdk/credential-provider-env": "^3.449.0",
"@aws-sdk/s3-request-presigner": "^3.231.0",
"@redux-devtools/extension": "^3.2.2",
"@stripe/react-stripe-js": "^2.1.1",
"@stripe/stripe-js": "^1.54.2",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.2",
"connect-multiparty": "^2.2.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"env": "^0.0.2",
"express": "^4.18.2",
"express-fileupload": "^1.3.1",
"form-data": "^4.0.0",
"fs": "^0.0.1-security",
"googleapis": "^121.0.0",
"jsonwebtoken": "^9.0.1",
"mongodb": "^4.4.0",
"mongoose": "^6.11.2",
"multer": "^1.4.4",
"node-cache": "^5.1.2",
"node-cron": "^3.0.2",
"nodemailer": "^6.7.2",
"nodemon": "^2.0.15",
"qs": "^6.11.2",
"react-google-login": "^5.2.2",
"react-icons": "^4.3.1",
"react-router": "^6.2.2",
"react-router-dom": "^6.4.5",
"react-scripts": "^2.1.3",
"react-stars": "^2.2.5",
"socket.io": "^4.7.2",
"stripe": "^8.222.0",
"twilio": "^4.19.0",
"uuid": "^8.3.2",
"validator": "^13.7.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"chai": "^4.3.8",
"chai-as-promised": "^7.1.1",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.2.0",
"sinon": "^16.0.0",
"sinon-chai": "^3.7.0",
"webpack": "^5.69.1"
}
}