-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 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
{
"name": "thegeekhub",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"classnames": "^2.2.6",
"concurrently": "^5.1.0",
"jwt-decode": "^2.2.0",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {},
"scripts": {
"start": "cd server && npm install && node app.js",
"server-install": "npm install --prefix server",
"server": "nodemon app.js --prefix server",
"client-install": "npm install --prefix client",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix server && npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/verma-anushka/MERN-Stack-Project.git"
},
"author": "Anushka Verma",
"license": "ISC",
"bugs": {
"url": "https://github.com/verma-anushka/MERN-Stack-Project/issues"
},
"homepage": "https://github.com/verma-anushka/MERN-Stack-Project#readme"
}