-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (39 loc) · 1.09 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
{
"name": "stack-overflow-clone",
"version": "1.0.0",
"description": "The clone most famous Q/A website StackOverFlow",
"main": "server.js",
"engines": {
"node": "14.x"
},
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd frontend && npm run start",
"client-install": "cd frontend && npm install",
"server-install": "npm install",
"install-all": "concurrently \"npm run frontend-install\" \"npm run server-install\" ",
"dev": "concurrently \"npm run frontend\" \"npm run server\" ",
"heroku-postbuild": "cd frontend && npm install && npm run build"
},
"keywords": [
"stackoverflow",
"stackoverflow clone",
"stackoverflow clone react",
"stack over flow clone ",
"stackoverflow clone github",
"react stackoverflow"
],
"author": "athul vinod",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"concurrently": "^7.0.0",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.1",
"nodemon": "^2.0.15",
"uuid": "^8.3.2"
}
}