-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "appointment_scheduler_webapp_expressmongodb",
"version": "2.0.1",
"private": true,
"description": "appointment scheduler web server with express and mongodbatlas",
"main": "index.js",
"type": "module",
"scripts": {
"server": "nodemon --exec \"npm run lint && node index\"",
"client": "npm run serve --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"render": "npm install --omit=dev && cd client && npm install --force --legacy-peer-deps && npm run build",
"start": "node index.js",
"lint": "eslint . --ext .js"
},
"author": "Leindfraust",
"dependencies": {
"bcrypt": "^5.1.1",
"chatgpt": "^5.2.5",
"cloudinary": "^1.41.0",
"connect-history-api-fallback": "^2.0.0",
"connect-mongo": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"formidable": "^3.5.1",
"helmet": "^7.0.0",
"mongoose": "^7.6.3",
"morgan": "^1.10.0",
"nodemailer": "^6.9.6",
"puppeteer": "^21.3.8",
"socket.io": "^4.7.2"
},
"devDependencies": {
"concurrently": "^8.2.1",
"cypress": "^13.3.1",
"eslint": "^8.51.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.28.1",
"nodemon": "^3.0.1"
}
}