mirror of
https://github.com/vale981/Vulcan
synced 2025-03-05 17:41:43 -05:00
specify explicit dependencies (npm & meteor packages)
This commit is contained in:
parent
4c5c696a82
commit
d382c995d0
3 changed files with 4 additions and 2 deletions
|
@ -10,6 +10,7 @@
|
|||
"body-parser": "^1.15.2",
|
||||
"bootstrap": "^4.0.0-alpha.2",
|
||||
"classnames": "^2.2.3",
|
||||
"deepmerge": "^1.2.0",
|
||||
"escape-string-regexp": "^1.0.5",
|
||||
"express": "^4.14.0",
|
||||
"formsy-react": "^0.18.1",
|
||||
|
@ -21,6 +22,7 @@
|
|||
"handlebars": "^4.0.5",
|
||||
"history": "^3.0.0",
|
||||
"html-to-text": "^2.1.0",
|
||||
"immutability-helper": "^2.0.0",
|
||||
"intl": "^1.2.4",
|
||||
"intl-locales-supported": "^1.0.0",
|
||||
"juice": "^1.11.0",
|
||||
|
@ -30,7 +32,6 @@
|
|||
"moment": "^2.13.0",
|
||||
"react": "^15.3.2",
|
||||
"react-addons-pure-render-mixin": "^15.3.2",
|
||||
"react-addons-update": "^15.3.2",
|
||||
"react-apollo": "^0.5.13",
|
||||
"react-bootstrap": "0.30.3",
|
||||
"react-bootstrap-datetimepicker": "0.0.22",
|
||||
|
|
|
@ -14,6 +14,7 @@ Package.onUse(function (api) {
|
|||
// Nova packages
|
||||
|
||||
'nova:core@0.27.3-nova',
|
||||
'nova:users@0.27.3-nova',
|
||||
|
||||
]);
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ import { withRouter } from 'react-router'
|
|||
import Posts from "meteor/nova:posts";
|
||||
import { graphql } from 'react-apollo';
|
||||
import gql from 'graphql-tag';
|
||||
import update from 'react-addons-update';
|
||||
import update from 'immutability-helper';
|
||||
|
||||
const PostsNewForm = (props, context) => {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue