Skip to content
This repository was archived by the owner on Jun 28, 2021. It is now read-only.

Commit 28554a9

Browse files
authored
Quran v2.3.0 (#592)
* Fixes #461 (#473) #461 Adding verse number to tooltip * improved aya/sura url param handling * improved code to ayah/surah url handler * used Route from react-router to handle reroute * Added tooltip prop for Ayah component in Search page (#474) * Create LICENSE.md (#477) * added Nafees font for Urdu and Punjabi translation * footer layout improved (#490) * Quick links layout improved. (#491) * footer layout improved * quick links layout improved * Update index.js * Adding margin to quick links section * User authentication and profile (#460) * wip * user stuff * Profile page! * Unneeded calls * PR feedback * go stateless * dup route * oops decorators * Add user bookmarks * Adding media and modal (#493) * Adding media and modal * squeeze a fix * Renav (#495) * surah page layout breakdown fixed * Fix node-http-proxy host in proxy request (#501) node-http-proxy was putting a host header with the current server name, which was thus causing nginx on the receiving end to send the request to the default handler (or the first one). This patch asks node-http-proxy to rewrite the host and port, and also to change the origin of the host header to onequran's url. * Env problems (#494) * Adding media and modal * Fix envs * Moving docker env closer * return dockerfile as is * fixes * give it a try * try again * desparate times * desparate times * host * sidebar * fix * tooltip fix * corrected elements nesting * edited * fixing tooltip bottom triangle glitch * moved getOffset function to utils folder * formatted code * wip on app install banner #427 * used fa icon for close btn * added event tracking for install and close banner * using default fonts for banner * removed one hiding console.log * fix unit tests * tooltip fix * corrected elements nesting * edited * fixing tooltip bottom triangle glitch * moved getOffset function to utils folder * formatted code * removed one hiding console.log * corrected QuickSurah assertion test * corrected quicksurah tests * experimental check * another exprerimental check * another workaround for tests * exporting tooltip code to file * editing. * another attempt * another attempt * removing eslint errors * removing eslint errors - final * removing eslint errors - final * fixed the banner icon and minor styling * do not always load bismillah (#515) * do not always load bismillah * while at it, lets not load images when we do not need them * Code splitting (#516) * Code splitting to work * working * added favicons, opensearch, and manifest files for chrome * removed web from related app * highlight currently playing ayah (#510) * added service worker and preconnect meta tags * don' show custom banner on chrome > 44 and safari > 6 * meh, when this was replaced * added prefer related apps * initial work on react-share * fix style * fix facebook share * add cursor pointer for the icons * fix surah still display Loading even in last of surah (#521) * switched hightlight color to green * added nightmode css and optimized svgs #201 * fixed night color for missing elements, added bare min component * added hightlight for readmore * changed night more UI * updated night mode UI * Added no script warning (#527) * added no script warning * fixed messaging * minor css changes * removed font size * fixed noscript break (#535) * fixed noscript break * fixed the link * loaders when navigating on client side * notes on autocomplete * Use new segments and surah info data (#542) * Use new segments and surah info data * delete alot of files * removed bootstrap scripts and descriptions * Local support (#523) * Work in progress for #245 * refactored local, local specific fonts, almost done with i18n :) * fixed search break and added other missing translation keys * added local switch * fixed the bug * fixed noscript break * added intl pollyfil * replaced double quote with single quote * fixing specs * formatting * more formatting * fixed noscript break * fixed the link * fixed specs using mound instead of shallow * added arabic local * PhantomJS don't support! fixed intl helper with vanilla js * added local for bookmark * Fixed sidebar (#554) * we needed bs dropdown man * fixed sidebar * New React + eslint (#543) * stylelint * autocomplete * make search work * more lints * fix audio * remove row component * move to deps * tests are not running * tests passing * fix travis tests * jquery * Add new normalizr (#565) * (#564) Fixes #562 Highlight ayah when playing * Fixes #557 Scrollbars bouncing (#563) * Add slack to readme (#570) * Fixes #547 Support continuing from last visited ayah (#559) * Fix last visited functionality - Read last visited surah/ayah from cookie and show resume option on main page if cookie exists - Refactor and cleanup previous last visited code to be more readable and match the new UI * Update lastVisit cookie ayah requests, switch cookie ayah field to ayahId for consistency * Delete last visit styles.scss * Change resume heading to continue and support urdu/arabic translations * Move vertical lines from class title into new class The existing .title class made it difficult for titles that are not a series of items to use the span tag as it would add unwanted vertical lines. The only user of this was QuickSurahs component. I moved the vertical lines into a new "items" class so that all other users which are not a series of items can use the title class without getting vertical lines in spans. Only last visit benefits from this at the moment since the main Home component doesn't have any spans inside the title and there are no other users of this scss file. * Add debug line back in lastvisit * Minor refactoring * Devise Token Auth for one quran (#571) * Devise Token Auth for one quran * pr comments * Highlight word in reading mode as well (#556) * highlight current word is readmode as well * added word by word play! buggy but working * fixed word position in reading modet * DRYed word render and added tooltip in reading mode * fixed trans language class * refactoring word rendering * refactored word rendering * removed duplicated code * removed debuging * adding auto scrolling in reading mode * Update docs (#567) * Update docs * Update CONTRIBUTING.md * Update README.md * Mention staging * Optimization of assets (#585) * quick optimization of assets * typo * #568 UI improvements (#583) * moved topoptions to navbar drawer * fix lint * fix tests * break eslint * fix eslint * fix test * verse dropdown max height * Global Nav * small bug * change again * placeholder for search * global nav edits and to merge so one pr * a ton of changes and i want to sleep now * fix test * remove unneeded * more delete * fix errors * fixes ##561 * console * delete that * minor style changes * pr comments * fixes audio * always close * Remove missing contents (#589)
1 parent e9c7e0c commit 28554a9

File tree

478 files changed

+20278
-24371
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

478 files changed

+20278
-24371
lines changed

.env

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
NODE_ENV=development
22
PORT=8000
3-
API_URL=http://quran.com:3000
3+
API_URL=http://staging.quran.com:3000
4+
ONE_QURAN_URL=http://localhost:3030
45
SEGMENTS_KEY=
56
SENTRY_KEY_CLIENT=
67
SENTRY_KEY_SERVER=
8+
# Quran.com - development app, no need to worry!
9+
FACEBOOK_APP_ID=1599019233731707

.eslintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
src/components/SurahInfo/htmls/*

.eslintrc

Lines changed: 20 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,24 @@
11
{
2-
"parser": "babel-eslint",
32
"extends": "airbnb",
4-
"env": {
5-
"browser": true,
6-
"node": true,
7-
"mocha": true,
8-
"es6": true
9-
},
3+
"parser": "babel-eslint",
104
"rules": {
11-
"react/no-multi-comp": 0,
12-
"import/default": 0,
13-
"import/no-duplicates": 0,
14-
"import/named": 0,
15-
"import/namespace": 0,
5+
"comma-dangle": 0,
6+
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
7+
"import/no-extraneous-dependencies": 0,
8+
"import/extensions": 0,
169
"import/no-unresolved": 0,
17-
"import/no-named-as-default": 2,
18-
// Temporarirly disabled due to a possible bug in babel-eslint (todomvc example)
19-
"block-scoped-var": 0,
20-
// Temporarily disabled for test/* until babel/babel-eslint#33 is resolved
21-
"padded-blocks": 0,
22-
"comma-dangle": 0, // not sure why airbnb turned this on. gross!
23-
"indent": [2, 2, {"SwitchCase": 1}],
24-
"no-console": 0,
25-
"no-alert": 0,
26-
"object-curly-spacing": 0,
27-
"no-case-declarations": 0
10+
"strict": 0
11+
},
12+
"ecmaFeatures": {
13+
"classes": true,
14+
"jsx": true
2815
},
2916
"plugins": [
30-
"react", "import"
17+
"react",
18+
"mocha"
3119
],
3220
"settings": {
33-
"import/parser": "babel-eslint",
34-
"import/resolve": {
35-
moduleDirectory: ["node_modules", "src"]
36-
}
21+
"import/resolver": "webpack"
3722
},
3823
"parserOptions":{
3924
"ecmaFeatures": {
@@ -52,6 +37,12 @@
5237
Raven: true,
5338
mixpanel: true,
5439
"expect": true,
55-
"browser": true
40+
"browser": true,
41+
"FB": true,
42+
sinon: true
43+
},
44+
"env": {
45+
"mocha": true,
46+
"amd": true
5647
}
5748
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ tests/functional/output/*
1515
test/functional/screenshots/*
1616
.ssh
1717
webpack-stats.debug.json
18+
*.DS_Store

CONTRIBUTING.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,8 @@ Pull requests are the greatest contributions, so be sure they are focused in sco
7575

7676
6. Now [open a pull request] with a clear title and description.
7777

78-
## Sever-side integration
79-
Unless you have the backend API running locally, you will need to update the `API_URL`, in `development.env` file, from `localhost` to `api.quran.com`. Leave the port number same.
80-
81-
To start the app, run `npm run dev` which will run both the server and the client (webpack) to compile upon edits. Go to http://localhost:8001 in your browser, not 8000 (that is just the express server).
82-
83-
If you experience an issue, check the [contributing] guidelines.
8478

8579
[upstream]: https://help.github.com/articles/syncing-a-fork/
86-
[contributing]: https://guides.github.com/activities/contributing-to-open-source/
8780
[already been reported]: https://github.com/quran/quran.com-frontend/issues
8881
[fork this project]: https://github.com/quran/quran.com-frontend/fork
8982
[open a pull request]: https://help.github.com/articles/using-pull-requests/

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ ENV NODE_ENV production
44
ENV API_URL http://api.quran.com:3000
55
ENV SENTRY_KEY_CLIENT https://[email protected]/80639
66
ENV SENTRY_KEY_SERVER https://44c105328ae544ae9928f9eb74b40061:[email protected]/80639
7+
# It's okay because it's only the APP ID
8+
ENV FACEBOOK_APP_ID 1557596491207315
9+
ENV ONE_QURAN_URL https://one.quran.com
710
ENV PORT 8000
811
ENV NODE_PATH "./src"
912

@@ -26,6 +29,7 @@ RUN cp -a /tmp/node_modules /quran
2629

2730
WORKDIR /quran
2831
ADD . /quran/
32+
2933
RUN npm run build:client
3034
RUN npm run build:server
3135

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2016 Quran.com
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,35 @@
1-
21
# Quran.com
32

4-
This is the project soon to be the Quran.com facing site. This is built in
3+
This project is the frontend for Quran.com. It is built using
54
[Reactjs] + [Redux] + [Expressjs] + [Webpack]. It is isomorphic (javascript shared
65
between both the server and the client) for SEO reasons.
76

8-
[![Stories Ready](https://badge.waffle.io/quran/quran.com-frontend.svg?label=ready&title=Ready)](http://waffle.io/quran/quran.com-frontend)
9-
[![Stories In Progress](https://badge.waffle.io/quran/quran.com-frontend.svg?label=in%20progress&title=In%20Progress)](http://waffle.io/quran/quran.com-frontend)
10-
[![Stories In Review](https://badge.waffle.io/quran/quran.com-frontend.svg?label=in%20review&title=In%20Review)](http://waffle.io/quran/quran.com-frontend)
11-
12-
13-
[![Dependency Status](https://david-dm.org/quran/quran.com-frontend.svg)](https://david-dm.org/quran/quran.com-frontend) [![devDependency Status](https://david-dm.org/quran/quran.com-frontend/dev-status.svg)](https://david-dm.org/quran/quran.com-frontend#info=devDependencies)
147
[![Code Climate](https://codeclimate.com/github/quran/quran.com-frontend.png)](https://codeclimate.com/github/quran/quran.com-frontend)
158

169
## How to contribute
17-
We trust that you will not copy this idea/project, this is at the end for the sake of Allah and we all have good intentions while working with this project. But We must stress that copying the code/project is unacceptable.
10+
We trust that you will not copy this idea/project, this is at the end for the sake of Allah and we all have good intentions while working with this project. But we must stress that copying the code/project is unacceptable.
1811

1912
Read the [contributing] section before creating an issue.
2013

21-
## Server-Side Integration
22-
Unless you have the backend API running locally, you will need to update the `API_URL`, in `development.env` file, from `localhost` to `api.quran.com`. Leave the port number same.
23-
24-
To start the app, run `npm run dev` which will run both the server and the client (webpack) to compile upon edits. Go to http://localhost:8001 in your browser, not 8000 (that is just the express server).
14+
## Running the app locally
15+
- Ensure you have [nodejs] installed
16+
- Get the source by running `git clone https://github.com/quran/quran.com-frontend/` or creating a [fork]
17+
- Run `npm install` to do first time installation of all dependencies
18+
- Run `npm run dev` to start the dev server
19+
- Open `http://localhost:8000` in your browser to see the app.
2520

21+
## Staging
22+
To see the app with the latest changes, see the [staging] site. Production releases are made periodically when staging is stable and well tested.
2623

2724
## Backend
28-
Current at: https://github.com/quran/quran-api-rails
29-
DB is private, message me for access.
25+
The API source is at https://github.com/quran/quran-api-rails
26+
27+
DB is private, message @mmahalwy for access.
28+
29+
The dev server uses the staging API by default. If you want to use a local API server, follow the instructions in the API repo and run the server locally then update the API_URL field in app.json to point to the local address.
3030

31+
## Slack
32+
Signup at https://quranslack.herokuapp.com to be added to the Slack group
3133

3234
## Design
3335
We currently use InvisionApp. Again, contact me if you'd like access to it.
@@ -44,4 +46,7 @@ analyze-bundle-size bundle-stats.json
4446
[Redux]: http://redux.js.org/
4547
[Expressjs]: http://expressjs.com/en/starter/hello-world.html
4648
[Webpack]: http://webpack.github.io/docs/what-is-webpack.html
49+
[nodejs]: https://nodejs.org/en/
4750
[contributing]: CONTRIBUTING.md
51+
[fork]: https://help.github.com/articles/fork-a-repo/
52+
[staging]: https://staging.quran.com

karma.conf.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,19 @@ module.exports = function(config) {
1313
'karma-sinon',
1414
'karma-webpack',
1515
'karma-chrome-launcher',
16-
'karma-phantomjs-launcher'
16+
'karma-phantomjs-launcher',
17+
'karma-intl-shim'
1718
],
1819

1920
// frameworks to use
2021
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
21-
frameworks: ['mocha', 'chai-sinon', 'sinon'],
22+
frameworks: ['mocha', 'chai-sinon', 'sinon', 'intl-shim'],
2223

2324
// list of files / patterns to load in the browser
2425
files: [
2526
'./node_modules/phantomjs-polyfill/bind-polyfill.js',
2627
'./tests/polyfill/Event.js',
28+
'./node_modules/Intl/locale-data/jsonp/en-US.js',
2729
{pattern: 'static/images/*', watched: false, included: false, served: true},
2830

2931
// Actual tests here

package.json

Lines changed: 43 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@
55
"repository": "https://github.com/quran/quran.com-frontend",
66
"scripts": {
77
"test": "npm run test:dev:unit",
8-
"test:ci:unit": "karma start --browsers PhantomJS --single-run; npm run test:ci:lint",
8+
"test:ci:unit": "karma start --browsers PhantomJS --single-run",
9+
"pretest:ci:unit": "npm run test:ci:lint",
910
"test:ci:functional": "BROWSER=phantomjs ./tests/functional/test.sh start-ci",
1011
"posttest:ci:functional": "./tests/functional/test.sh stop",
1112
"test:dev:unit": "karma start",
12-
"test:ci:lint": "eslint ./src/**/*.js",
13+
"test:ci:lint": "./node_modules/eslint/bin/eslint.js ./src",
1314
"test:dev:functional": "BROWSER=chrome ./tests/functional/test.sh start",
1415
"posttest:dev:functional": "./tests/functional/test.sh stop",
15-
"test:dev:lint": "eslint ./src/scripts/**/*.js",
16+
"test:dev:lint": "./node_modules/eslint/bin/eslint.js ./src",
1617
"test:stylelint": "stylelint './src/**/*.scss' --config ./webpack/.stylelintrc",
1718
"dev": "env NODE_PATH='./src' PORT=8000 UV_THREADPOOL_SIZE=100 node ./webpack/webpack-dev-server.js & env NODE_PATH='./src' PORT=8000 node ./bin/server.js",
1819
"start": "NODE_PATH='src' node ./start",
@@ -38,6 +39,7 @@
3839
"babel-plugin-transform-react-constant-elements": "6.9.1",
3940
"babel-plugin-transform-react-display-name": "6.8.0",
4041
"babel-plugin-transform-react-inline-elements": "6.8.0",
42+
"babel-plugin-transform-react-remove-prop-types": "0.2.11",
4143
"babel-plugin-transform-runtime": "6.12.0",
4244
"babel-plugin-typecheck": "3.9.0",
4345
"babel-polyfill": "6.13.0",
@@ -54,87 +56,95 @@
5456
"cache-manager": "1.5.0",
5557
"clean-webpack-plugin": "0.1.10",
5658
"compression": "1.6.2",
59+
"compression-webpack-plugin": "0.3.2",
5760
"cookie-parser": "1.4.3",
58-
"copy-to-clipboard": "1.1.1",
61+
"copy-to-clipboard": "3.0.5",
5962
"cors": "2.7.1",
60-
"crypto-js": "3.1.6",
6163
"css-loader": "0.23.1",
6264
"debug": "2.2.0",
63-
"dotenv": "1.2.0",
65+
"dotenv": "2.0.0",
6466
"errorhandler": "1.4.3",
6567
"express": "4.14.0",
6668
"express-state": "1.4.0",
67-
"express-useragent": "0.2.4",
69+
"express-useragent": "1.0.4",
6870
"extract-text-webpack-plugin": "2.0.0-beta.3",
6971
"file-loader": "0.8.5",
7072
"fontfaceobserver": "1.7.3",
73+
"history": "^3.0.0",
7174
"html-webpack-plugin": "1.7.0",
7275
"http-proxy": "1.14.0",
73-
"humps": "1.1.0",
76+
"humps": "2.0.0",
7477
"imports-loader": "0.6.5",
75-
"jquery": "2.2.4",
7678
"json-loader": "0.5.4",
7779
"morgan": "1.7.0",
78-
"node-sass": "3.8.0",
79-
"normalizr": "2.2.1",
80+
"node-sass": "4.1.1",
81+
"normalizr": "3.0.2",
8082
"pretty-error": "2.0.0",
8183
"promise": "7.1.1",
8284
"proxy-middleware": "0.14.0",
8385
"qs": "6.2.1",
84-
"raven": "0.11.0",
86+
"raven": "1.1.1",
8587
"raw-loader": "0.5.1",
86-
"react": "0.14.8",
87-
"react-bootstrap": "0.29.5",
88-
"react-cookie": "0.3.4",
89-
"react-dom": "0.14.8",
88+
"react": "15.4.1",
89+
"react-a11y": "0.3.3",
90+
"react-addons-create-fragment": "15.4.1",
91+
"react-bootstrap": "0.30.7",
92+
"react-cookie": "1.0.4",
93+
"react-dom": "15.4.1",
9094
"react-helmet": "3.1.0",
95+
"react-inlinesvg": "0.5.4",
96+
"react-intl": "2.1.5",
9197
"react-metrics": "1.2.1",
92-
"react-paginate": "0.4.3",
93-
"react-redux": "4.4.5",
94-
"react-router": "2.6.1",
98+
"react-paginate": "4.1.0",
99+
"react-redux": "5.0.1",
100+
"react-router": "3.0.0",
95101
"react-router-bootstrap": "0.20.1",
96-
"react-router-redux": "4.0.5",
102+
"react-router-redux": "4.0.7",
97103
"react-router-scroll": "0.2.1",
98104
"react-scroll": "1.2.0",
105+
"react-share": "1.11.0",
106+
"react-sidebar": "2.2.1",
99107
"redux": "3.5.2",
100-
"redux-connect": "2.4.0",
108+
"redux-connect": "5.0.0",
101109
"reselect": "2.5.3",
102110
"resolve-url": "0.2.1",
103-
"sass-loader": "2.0.1",
111+
"sass-loader": "4.1.1",
104112
"serialize-javascript": "1.3.0",
105113
"serve-favicon": "2.3.0",
106114
"sitemap": "1.8.1",
107115
"strip-loader": "0.1.2",
108116
"style-loader": "0.13.1",
109-
"superagent": "1.8.4",
117+
"superagent": "3.3.1",
110118
"url": "0.11.0",
111119
"url-loader": "0.5.7",
112120
"webpack": "2.1.0-beta.20",
113121
"webpack-isomorphic-tools": "2.5.7",
114122
"winston": "1.1.2"
115123
},
116124
"devDependencies": {
117-
"babel-eslint": "6.0.4",
125+
"babel-eslint": "7.1.1",
118126
"babel-plugin-react-transform": "2.0.2",
119127
"babel-preset-react-hmre": "1.1.1",
120128
"chai": "3.0.0",
121129
"chromedriver": "2.22.2",
122130
"del": "2.0.2",
123131
"enzyme": "2.2.0",
124-
"eslint": "2.13.0",
125-
"eslint-config-airbnb": "9.0.1",
132+
"eslint": "3.12.2",
133+
"eslint-config-airbnb": "13.0.0",
126134
"eslint-loader": "1.3.0",
127-
"eslint-plugin-import": "1.8.1",
128-
"eslint-plugin-jsx-a11y": "1.5.3",
129-
"eslint-plugin-react": "5.2.2",
135+
"eslint-plugin-import": "2.2.0",
136+
"eslint-plugin-jsx-a11y": "2.2.3",
137+
"eslint-plugin-mocha": "4.8.0",
138+
"eslint-plugin-react": "6.8.0",
130139
"jscs": "2.1.1",
131-
"karma": "1.2.0",
140+
"karma": "1.3.0",
132141
"karma-chai": "0.1.0",
133142
"karma-chai-sinon": "0.1.5",
134143
"karma-chrome-launcher": "0.2.0",
144+
"karma-intl-shim": "1.0.3",
135145
"karma-junit-reporter": "0.3.4",
136146
"karma-mocha": "0.2.0",
137-
"karma-phantomjs-launcher": "~0.2.1",
147+
"karma-phantomjs-launcher": "~1.0.2",
138148
"karma-script-launcher": "~0.1.0",
139149
"karma-sinon": "1.0.4",
140150
"karma-sourcemap-loader": "0.3.7",
@@ -146,7 +156,7 @@
146156
"phantomjs-polyfill": "0.0.1",
147157
"piping": "0.3.0",
148158
"pre-commit": "1.1.3",
149-
"react-addons-test-utils": "0.14.7",
159+
"react-addons-test-utils": "15.4.1",
150160
"react-transform-catch-errors": "1.0.0",
151161
"react-transform-hmr": "1.0.1",
152162
"redbox-react": "1.1.1",
@@ -161,6 +171,7 @@
161171
"wdio-mocha-framework": "0.3.7",
162172
"wdio-spec-reporter": "0.0.3",
163173
"webdriverio": "4.2.1",
174+
"webpack-bundle-analyzer": "2.2.1",
164175
"webpack-dev-server": "1.6.5",
165176
"webpack-hot-middleware": "2.12.2"
166177
},

0 commit comments

Comments
 (0)