rename 'react' to 'client'

This commit is contained in:
2018-09-22 17:45:45 +03:00
parent 66fc2758b0
commit cc9c897bc0
53 changed files with 45 additions and 17 deletions

View File

@@ -7,13 +7,13 @@
"scripts": {
"start": "node ./app.js",
"dev": "npx concurrently \"npm run server\" \"npm run client\" ",
"client": "cd react && npm start",
"client": "cd client && npm start",
"server": "npx cross-env NODE_ENV=development npx nodemon --inspect ./app.js",
"test": "npx cross-env NODE_ENV=test jest",
"heroku-postbuild": "cd react && npm install && npm run build"
"heroku-postbuild": "cd client && npm install && npm run build"
},
"cacheDirectories": [
"react/node_modules",
"client/node_modules",
"node_modules"
],
"engines": {