mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-09-21 20:15:52 +08:00
Update package.json to include lerna in main dependencies
This commit is contained in:
parent
1ed55a6ee6
commit
7a45506271
2 changed files with 8 additions and 3 deletions
|
@ -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.
|
||||
|
|
|
@ -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": {
|
||||
|
|
Loading…
Add table
Reference in a new issue