-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
47c1ecd
commit 05d7278
Showing
3 changed files
with
119 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,5 +69,5 @@ | |
"state", | ||
"visibility" | ||
], | ||
"version": "2.2.9" | ||
"version": "2.2.10" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
{ | ||
"name": "server", | ||
"version": "1.0.0", | ||
"private": true, | ||
"main": "index.js", | ||
"license": "MIT", | ||
"engines": { | ||
"node": "7.4.0", | ||
"npm": "4.0.5", | ||
"yarn": "0.24.6" | ||
}, | ||
"dependencies": { | ||
"concurrently": "^3.4.0", | ||
"rimraf": "^2.6.1" | ||
}, | ||
"scripts": { | ||
"build": "concurrently \"cd client && yarn build\" \"cd server && yarn build\"", | ||
"clean": "concurrently \"rimraf node_modules\" \"cd client && rimraf node_modules build\" \"cd server && rimraf node_modules build\"", | ||
"heroku-postbuild": "yarn build", | ||
"install": "(cd client && yarn) && (cd server && yarn)", | ||
"start": "concurrently \"cd client && PORT=3000 yarn start\" \"cd server && PORT=3001 yarn start\"", | ||
"start:prod": "cd server && yarn start:prod", | ||
"format": "prettier-eslint \"src/**/*.js\"" | ||
}, | ||
"devDependencies": { | ||
"babel-eslint": "^7.1.1", | ||
"eslint": "^3.19.0", | ||
"eslint-config-airbnb": "^15.0.1", | ||
"eslint-plugin-import": "^2.2.0", | ||
"eslint-plugin-jsx-a11y": "^5.0.1", | ||
"eslint-plugin-react": "^7.0.1", | ||
"prettier": "^1.5.2", | ||
"prettier-eslint": "^6.1.0", | ||
"prettier-eslint-cli": "^3.4.2" | ||
} | ||
"name": "server", | ||
"version": "1.0.0", | ||
"private": true, | ||
"main": "index.js", | ||
"license": "MIT", | ||
"engines": { | ||
"node": "7.4.0", | ||
"npm": "4.0.5", | ||
"yarn": "0.24.6" | ||
}, | ||
"dependencies": { | ||
"concurrently": "^3.4.0", | ||
"rimraf": "^2.6.1" | ||
}, | ||
"scripts": { | ||
"build": "concurrently \"cd client && npm run build\" \"cd server && npm run build\"", | ||
"clean": "concurrently \"rimraf node_modules\" \"cd client && rimraf node_modules build\" \"cd server && rimraf node_modules build\"", | ||
"heroku-postbuild": "npm run build", | ||
"instal": "npm install && cd client && npm install && cd ../server && npm install", | ||
"start": "concurrently \"cd client && PORT=3000 npm run start\" \"cd server && PORT=3001 npm run start\"", | ||
"start:prod": "cd server && npm run start:prod", | ||
"format": "prettier-eslint \"src/**/*.js\"" | ||
}, | ||
"devDependencies": { | ||
"babel-eslint": "^7.1.1", | ||
"eslint": "^3.19.0", | ||
"eslint-config-airbnb": "^15.0.1", | ||
"eslint-plugin-import": "^2.2.0", | ||
"eslint-plugin-jsx-a11y": "^5.0.1", | ||
"eslint-plugin-react": "^7.0.1", | ||
"prettier": "^1.5.2", | ||
"prettier-eslint": "^6.1.0", | ||
"prettier-eslint-cli": "^3.4.2" | ||
} | ||
} |