-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.34 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.34 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
{
"name": "mern-app",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"scripts": {
"server": "nodemon server.js",
"client": "npm run dev --prefix client",
"dev": "export NODE_ENV=development || set NODE_ENV=development&& concurrently \"npm run server\" \"npm run client\" ",
"buildAndStart:local": "export NODE_ENV=production.local || set NODE_ENV=production.local&& npm install && npm install --prefix client && npm run build:local --prefix client && npm start",
"build": "npm install && npm install --prefix client && npm run build --prefix client",
"start": "node server.js",
"prepare": "husky"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.4.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.14",
"zod": "^3.23.8"
},
"devDependencies": {
"concurrently": "^8.2.2",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.4",
"prettier": "^3.3.3"
}
}