-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "spacefeed",
"version": "1.0.0",
"description": "a social media platform",
"main": "backend/server.js",
"scripts": {
"start": "node backend/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon backend/server.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "ishant",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^7.6.0",
"connect-mongo": "^4.6.0",
"cool-images": "^1.0.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"firebase-admin": "^11.5.0",
"http-errors": "^2.0.0",
"image-url-validator": "^1.0.4",
"inspirational-quotes": "^2.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongoose": "^6.9.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-firebase-storage": "^4.1.2",
"nodemon": "^2.0.20",
"random-sentence": "^1.0.4",
"socket.io": "^4.5.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.32.2"
}
}