-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 856 Bytes
/
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
{
"name": "google-doc-clone",
"version": "1.0.0",
"description": "MERN stack web app for collaborative document creation",
"main": "server.js",
"scripts": {
"start": "node server/server.js",
"server": "nodemon server/server.js",
"client": "npm start --prefix client",
"build": "npm install && npm install --prefix client && npm run build --prefix client",
"dev": "concurrently \"npm run server \" \"npm run client\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Shashank Bhat",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"firebase": "^10.0.0",
"firebase-admin": "^11.10.1",
"nodemailer": "^6.9.4",
"socket.io": "^4.7.1"
},
"devDependencies": {
"concurrently": "^8.2.0",
"nodemon": "^3.0.1"
}
}