Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 5 additions & 11 deletions client/apps/hello_world/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,22 @@
"watch": "jest --config=config/jest_config.json --watch"
},
"dependencies": {
"atomic-fuel": "^3.0.0",
"atomic-fuel": "^3.4.0",
"babel": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"es6-promise": "^4.2.5",
"history": "^4.7.2",
"lodash": "4.17.11",
"lodash": "4.17.15",
"prop-types": "^15.6.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-hot-loader": "^4.6.3",
"react-proxy-loader": "^0.3.5",
"react-redux": "^6.0.0",
"react-redux": "^7.1.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.0",
"redux": "4.0.1",
"uuid": "3.3.2"
},
"devDependencies": {
"jest": "^24.1.0",
"redux-devtools": "^3.5.0",
"redux-devtools-dock-monitor": "^1.1.3",
"redux-devtools-log-monitor": "^1.4.0"
}
}
22 changes: 9 additions & 13 deletions client/apps/hello_world_graphql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,27 @@
"test_debug": "node inspect jest --runInBand --config=config/jest_config.json;"
},
"dependencies": {
"apollo-cache-inmemory": "^1.4.2",
"apollo-client": "^2.4.11",
"apollo-link-http": "^1.5.9",
"apollo-cache-inmemory": "^1.6.2",
"apollo-client": "^2.6.3",
"apollo-link-http": "^1.5.15",
"apollo-link-state": "^0.4.2",
"atomic-canvas": "^1.7.0",
"atomic-fuel": "^3.0.0",
"atomic-canvas": "^1.8.0",
"atomic-fuel": "^3.4.0",
"babel": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"es6-promise": "^4.2.5",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"history": "^4.7.2",
"lodash": "4.17.11",
"lodash": "4.17.15",
"prop-types": "^15.6.1",
"react": "^16.7.0",
"react-apollo": "^2.3.3",
"react-dom": "^16.7.0",
"react": "^16.9.0",
"react-apollo": "^2.5.7",
"react-dom": "^16.9.0",
"react-hot-loader": "^4.6.3",
"react-proxy-loader": "^0.3.5",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"jest": "^24.1.0",
"redux-devtools": "^3.5.0"
}
}
10 changes: 5 additions & 5 deletions client/config/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const path = require('path');
// There is a warning if the .env file is missing
// This is fine in a production setting, where settings
// are loaded from the env and not from a file
require('dotenv').load({ path: path.join(__dirname, '../../.env') });
require('dotenv').config({ path: path.join(__dirname, '../../.env') });

const deployConfig = require('../../.s3-website.json');

Expand All @@ -17,10 +17,10 @@ const devOutput = path.join(__dirname, '../../build/dev', devRelativeOutput);
const prodOutput = path.join(__dirname, '../../build/prod', prodRelativeOutput);

// const prodAssetsUrl = ''; // Set this to the url where the assets will be deployed.
// If you want the paths to be relative to the deploy then leave this
// value as an empty string. This value could also be a CDN or
// it could be the ssl version of your S3 bucket ie:
// https://s3.amazonaws.com/' + deployConfig.domain;
// If you want the paths to be relative to the deploy then leave this
// value as an empty string. This value could also be a CDN or
// it could be the ssl version of your S3 bucket ie:
// https://s3.amazonaws.com/' + deployConfig.domain;
// For local testing set prodAssetsUrl to process.env.ASSETS_URL
const prodAssetsUrl = `${process.env.ASSETS_URL}:${process.env.ASSETS_PORT}`;
// const prodAssetsUrl = `https://s3.amazonaws.com/${deployConfig.domain}`;
Expand Down
3 changes: 3 additions & 0 deletions client/config/shim.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
global.requestAnimationFrame = (callback) => {
setTimeout(callback, 0);
};
18 changes: 10 additions & 8 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,24 @@
},
"dependencies": {
"eventsource-polyfill": "^0.9.6",
"superagent": "^4.1.0"
"superagent": "^5.1.0"
},
"devDependencies": {
"dotenv": "6.2.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.12.1",
"dotenv": "8.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.3.0",
"jest": "^23.6.0",
"nock": "^10.0.6",
"phantomjs-prebuilt": "^2.1.16",
"react-test-renderer": "^16.7.0"
"react-test-renderer": "^16.8.6",
"redux-devtools": "^3.5.0",
"redux-devtools-dock-monitor": "^1.1.3",
"redux-devtools-log-monitor": "^1.4.0"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"react"
],
"dependencies": {
"del": "^3.0.0"
"del": "^5.0.0"
},
"devDependencies": {
"atomic-reactor": "^3.2.3"
Expand Down
Loading