Update package.json to include lerna in main dependencies

This commit is contained in:
Evan Morikawa 2016-07-07 13:42:44 -07:00
parent 1ed55a6ee6
commit 7a45506271
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,7 @@
# This Dockerfile builds a production-ready image of K2 to be used across all
# services. See the Dockerfile documentation here:
# https://docs.docker.com/engine/reference/builder/
# Use the latest Node 6 base docker image
# https://github.com/nodejs/docker-node
FROM node:6
@ -8,8 +12,9 @@ WORKDIR /home
RUN npm install --production
# This will do an `npm install` for each of our modules and then link them
# all together. See more about Lerna here: https://github.com/lerna/lerna
# This will do an `npm install` for each of our modules and then link them all
# together. See more about Lerna here: https://github.com/lerna/lerna We have
# to run this separately from npm postinstall due to permission issues.
RUN node_modules/.bin/lerna bootstrap
# External services run on port 5100. Expose it.

View file

@ -5,6 +5,7 @@
"main": "",
"dependencies": {
"bluebird": "3.x.x",
"lerna": "2.0.0-beta.23",
"mysql": "^2.11.1",
"redis": "2.x.x",
"rx": "4.x.x",
@ -19,7 +20,6 @@
"eslint-plugin-jsx-a11y": "1.x",
"eslint-plugin-react": "5.x",
"eslint_d": "3.x",
"lerna": "2.0.0-beta.23",
"sqlite3": "https://github.com/bengotow/node-sqlite3/archive/bengotow/usleep-v3.1.4.tar.gz"
},
"scripts": {