Skip to content

Commit

Permalink
Upgrade dependencies (#114)
Browse files Browse the repository at this point in the history
generate for the this generator. This dependencies are working perfect in the project that the generator creates.

.ignore: i added a few files that it should be ignored.

Note:

The next dependencies are breaking the tests and/or it would have to do a few changes in the templetes
for using it because of the new versions have a new approach for use it.
In this way, dont update the next dependencies :

babel-jest
jest-cli
mockgoose
  • Loading branch information
maustand authored and diegohaz committed Oct 24, 2017
1 parent 6a58491 commit a9decf7
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 31 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
.DS_Store
node_modules
coverage
*.sublime-project
*.sublime-workspace
package-lock.json
npm-debug.log
63 changes: 32 additions & 31 deletions generators/app/templates/_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,64 +21,65 @@
"setupTestFrameworkScriptFile": "<rootDir>/test/setup.js"
},
"devDependencies": {
"apidoc": "^0.16.1",
"apidoc": "^0.17.6",
"apidoc-markdown": "^0.2.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^18.0.0",
"cross-env": "^3.1.3",
"babel-eslint": "^8.0.1",
"babel-jest": "^20.0.3",
"cross-env": "^5.0.5",
"dotenv-safe": "^4.0.3",
"eslint": "^3.3.1",
"eslint-config-standard": "^6.0.0",
"eslint": "^4.4.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.0",
"jest-cli": "^18.1.0",
"eslint-plugin-standard": "^3.0.1",
"jest-cli": "^20.0.4",
"mockgoose": "^6.0.8",
"nock": "^9.0.2",
"nodemon": "^1.10.2",
"opn-cli": "^3.1.0",
"sinon": "^1.17.5",
"supertest": "^2.0.0",
"sinon": "^4.0.1",
"supertest": "^3.0.0",
"supertest-as-promised": "^4.0.0"
},
"dependencies": {
"babel-core": "^6.17.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-1": "^6.16.0",
"babel-runtime": "^6.11.6",
"babel-core": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-runtime": "^6.26.0",
<%_ if (generateAuthApi && passwordSignup) { _%>
"bcrypt": "^1.0.2",
"bcrypt": "^1.0.3",
<%_ } _%>
"bluebird": "^3.4.0",
"body-parser": "^1.15.1",
"bodymen": "^1.0.1",
"compression": "^1.6.2",
"cors": "^2.7.1",
"express": "^4.13.4",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"bodymen": "^1.0.3",
"compression": "^1.7.1",
"cors": "^2.8.4",
"express": "^4.16.2",
<%_ if (https) { _%>
"express-force-ssl": "^0.3.2",
<%_ } _%>
<%_ if (generateAuthApi) { _%>
"jsonwebtoken": "^7.1.9",
"jsonwebtoken": "^8.1.0",
<%_ } _%>
"mongoose": "^4.4.19",
"mongoose-create-unique": "^0.4.1",
"mongoose-keywords": "^0.3.1",
"mongoose": "^4.12.4",
"mongoose-create-unique": "^0.4.4",
"mongoose-keywords": "^0.3.2",
"morgan": "^1.7.0",
<%_ if (generateAuthApi) { _%>
"passport": "^0.3.2",
"passport": "^0.4.0",
<%_ if (passwordSignup) { _%>
"passport-http": "^0.3.0",
<%_ } _%>
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^2.1.0",
"passport-jwt": "^3.0.0",
<%_ } _%>
"querymen": "^2.0.0",
"querymen": "^2.1.3",
<%_ if (generateAuthApi) { _%>
"rand-token": "^0.3.0",
<%_ } _%>
"request": "^2.74.0",
"request-promise": "^4.1.1"<%_ if (typeof sendgridKey !== 'undefined' && sendgridKey) { _%>,
"request": "^2.83.0",
"request-promise": "^4.2.2"
<%_ if (typeof sendgridKey !== 'undefined' && sendgridKey) { _%>,
"sendgrid": "^4.0.2"
<%_ } _%>
}
Expand Down

0 comments on commit a9decf7

Please sign in to comment.