mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-27 02:23:28 +08:00
Flesh out skeleton.
This commit is contained in:
parent
ddd5641463
commit
0c5dd6ded7
3 changed files with 53 additions and 2 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -6,6 +6,10 @@ storage/
|
|||
lerna-debug.log
|
||||
newrelic_agent.log
|
||||
|
||||
# Vim temp files
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# Elastic Beanstalk Files
|
||||
.elasticbeanstalk/*
|
||||
!.elasticbeanstalk/*.cfg.yml
|
||||
|
|
|
@ -1,2 +1,8 @@
|
|||
require('./nylas-api/app.js');
|
||||
require('./nylas-sync/app.js');
|
||||
export function activate() {
|
||||
require('./nylas-api/app.js');
|
||||
require('./nylas-sync/app.js');
|
||||
}
|
||||
|
||||
export function deactivate() {
|
||||
|
||||
}
|
||||
|
|
41
packages/local-sync/package.json
Normal file
41
packages/local-sync/package.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "local-sync",
|
||||
"version": "0.0.1",
|
||||
"description": "The local sync engine for Nylas N1",
|
||||
"main": "./app.js",
|
||||
"dependencies": {
|
||||
"bunyan": "1.8.0",
|
||||
"bunyan-cloudwatch": "2.0.0",
|
||||
"bunyan-loggly": "^1.0.0",
|
||||
"bunyan-prettystream": "emorikawa/node-bunyan-prettystream",
|
||||
"imap": "0.8.x",
|
||||
"lerna": "2.0.0-beta.23",
|
||||
"mysql": "^2.11.1",
|
||||
"pm2": "^1.1.3",
|
||||
"promise-props": "^1.0.0",
|
||||
"promise.prototype.finally": "^1.0.1",
|
||||
"redis": "2.x.x",
|
||||
"request": "^2.73.0",
|
||||
"rx": "4.x.x",
|
||||
"sequelize": "3.x.x",
|
||||
"underscore": "1.x.x",
|
||||
"utf7": "https://github.com/truebit/utf7/archive/1f753bac59b99d93b17a5ef11681e232465e2558.tar.gz"
|
||||
"sqlite3": "https://github.com/bengotow/node-sqlite3/archive/bengotow/usleep-v3.1.4.tar.gz"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/nylas/K2.git"
|
||||
},
|
||||
"author": "Nylas",
|
||||
"license": "proprietary",
|
||||
"bugs": {
|
||||
"url": "https://github.com/nylas/K2/issues"
|
||||
},
|
||||
"engines": {
|
||||
"nylas": "*"
|
||||
},
|
||||
"windowTypes": {
|
||||
"sync": true
|
||||
},
|
||||
"homepage": "https://github.com/nylas/K2#readme",
|
||||
}
|
Loading…
Reference in a new issue