Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
fix typings issues
Browse files Browse the repository at this point in the history
  • Loading branch information
James Baxley committed Sep 27, 2016
1 parent 086a65c commit 655f19e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 23 deletions.
37 changes: 19 additions & 18 deletions package.json
Expand Up @@ -53,21 +53,7 @@
"apollo-client": "^0.4.15"
},
"devDependencies": {
"@types/enzyme": "^2.4.32",
"@types/immutable": "^3.8.3",
"@types/invariant": "^2.2.27",
"@types/isomorphic-fetch": "0.0.30",
"@types/jest": "^0.9.31",
"@types/lodash": "^4.14.34",
"@types/node": "^6.0.38",
"@types/object-assign": "^4.0.28",
"@types/react": "^0.14.34",
"@types/react-addons-test-utils": "^0.14.14",
"@types/react-dom": "^0.14.16",
"@types/react-redux": "^4.4.31",
"@types/redux-form": "^4.0.29",
"@types/redux-immutable": "^3.0.30",
"@types/sinon": "^1.16.29",
"@types/chai": "^3.4.33",
"apollo-client": "^0.4.15",
"babel-jest": "^14.1.0",
"babel-preset-react-native": "^1.9.0",
Expand All @@ -77,7 +63,6 @@
"enzyme": "^2.2.0",
"graphql": "^0.5.0",
"graphql-tag": "^0.1.7",
"graphql-typings": "0.0.1-beta-2",
"gzip-size": "^3.0.0",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
Expand All @@ -102,18 +87,34 @@
"swapi-graphql": "0.0.4",
"travis-weigh-in": "^1.0.2",
"tslint": "^3.6.0",
"typescript": "^2.1.0-dev.20160918",
"typescript": "^2.0.3",
"typescript-require": "^0.2.9-1",
"typings": "^0.7.9",
"uglify-js": "^2.6.2"
},
"dependencies": {
"@types/enzyme": "^2.4.32",
"@types/immutable": "^3.8.3",
"@types/invariant": "^2.2.27",
"@types/isomorphic-fetch": "0.0.30",
"@types/jest": "^0.9.31",
"@types/lodash": "^4.14.36",
"@types/node": "^6.0.38",
"@types/object-assign": "^4.0.28",
"@types/react": "^0.14.34",
"@types/react-addons-test-utils": "^0.14.14",
"@types/react-dom": "^0.14.16",
"@types/react-redux": "^4.4.31",
"@types/redux-form": "^4.0.29",
"@types/redux-immutable": "^3.0.30",
"@types/sinon": "^1.16.29",
"hoist-non-react-statics": "^1.2.0",
"invariant": "^2.2.1",
"lodash.flatten": "^4.2.0",
"lodash.isequal": "^4.1.1",
"lodash.isobject": "^3.0.2",
"object-assign": "^4.0.1",
"recompose": "^0.20.2"
"recompose": "^0.20.2",
"typed-graphql": "^1.0.2"
}
}
10 changes: 5 additions & 5 deletions typings.d.ts
@@ -1,4 +1,4 @@
/// <reference types="graphql-typings" />
/// <reference path="./node_modules/typed-graphql/graphql.d.ts" />


/*
Expand All @@ -10,13 +10,13 @@ declare module 'lodash.isobject' {
}

declare module 'lodash.isequal' {
import main = require('lodash');
export = main.isEqual;
import main = require('lodash/isEqual');
export = main;
}

declare module 'lodash.flatten' {
import main = require('lodash');
export = main.flatten;
import main = require('lodash/flatten');
export = main;
}

declare module 'recompose/compose' {
Expand Down

0 comments on commit 655f19e

Please sign in to comment.