-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.53 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
{
"name": "carshop",
"version": "2.0.0",
"engines": {
"node": "18.18.2"
},
"description": "\"E-commerce project - MERN stack\"",
"main": "server.js",
"type": "module",
"repository": "https://github.com/ricardomb94/carshop.git",
"scripts": {
"start": "node backend/server.js",
"server": "nodemon backend/server.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"data:import": "node backend/seeder.js",
"data:destroy": "node backend/seeder.js -d",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"author": "Ricardo MBK",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^8.1.1",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.1.0",
"colors": "^1.4.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.2.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.11",
"react-hook-form": "^7.50.1",
"react-scripts": "^5.0.1",
"react-typed": "^2.0.12",
"redirect-ssl": "^3.0.0",
"render-static": "^1.0.1",
"sharp": "^0.33.1",
"socket.io": "^4.7.5",
"ws": "^8.16.0"
},
"devDependencies": {
"concurrently": "^8.2.1",
"nodemon": "^3.0.1"
}
}