Skip to content
This repository has been archived by the owner on May 28, 2018. It is now read-only.

Commit

Permalink
link front npm with root foler npm
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrohee committed Sep 12, 2016
1 parent d379ce4 commit bb156de
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,17 @@
"scripts": {
"preinstall": "npm-run-all --sequential install:back install:front",
"install:back": "cd server && npm install",
"install:front": "echo 'front install'",
"start": "cd server && npm run start",
"install:front": "cd client && npm install",
"start": "npm-run-all --sequential start:back start:front",
"start:back": "docker-compose up -d",
"start:front": "cd client && npm run start",
"test": "npm-run-all --sequential test:back test:front test:docker",
"test:docker": "./tools/dockerTest.sh",
"test:back": "cd server && npm test",
"test:front": "echo 'front test'",
"test:front": "cd client && npm test",
"lint": "npm-run-all --sequential lint:back lint:front",
"lint:back": "cd server && npm run lint",
"lint:front": "echo 'front lint'"
"lint:front": "cd client && npm run lint"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit bb156de

Please sign in to comment.