|
9 | 9 | "url": "https://github.com/combine/react-redux-starter.git"
|
10 | 10 | },
|
11 | 11 | "engines": {
|
12 |
| - "node": "5.5.0", |
| 12 | + "node": "5.9.1", |
13 | 13 | "npm": "3.3.x"
|
14 | 14 | },
|
15 | 15 | "scripts": {
|
16 | 16 | "start": "npm run build:development; npm run start:development:server & npm run start:development:client",
|
17 | 17 | "start:cordova": "HOT_CORDOVA=true npm run build:cordova; npm run start:development:server & HOT_CORDOVA=true npm run start:development:client",
|
18 | 18 | "start:production": "node server",
|
19 | 19 | "start:development:client": "HOT=true node webpack/server.development",
|
20 |
| - "start:development:server": "nodemon server", |
21 |
| - "build:development": "webpack --progress --colors --display-error-details --config webpack/config.development.js", |
22 |
| - "build:production": "NODE_ENV=production webpack -p --optimize-dedupe --config webpack/config.production.js", |
| 20 | + "start:development:server": "$(npm bin)/nodemon server", |
| 21 | + "build:development": "$(npm bin)/webpack --progress --colors --display-error-details --config webpack/config.development.js", |
| 22 | + "build:production": "NODE_ENV=production $(npm bin)/webpack -p --optimize-dedupe --config webpack/config.production.js", |
23 | 23 | "build:cordova": "npm run build:cordova:development",
|
24 |
| - "build:cordova:development": "npm run cordova:clean; webpack --progress --colors --display-error-details --config webpack/config.cordova.js; npm run cordova:prepare", |
25 |
| - "build:cordova:production": "npm run cordova:clean; NODE_ENV=production webpack -p --optimize-dedupe --config webpack/config.cordova.js; npm run cordova:prepare;", |
| 24 | + "build:cordova:development": "npm run cordova:clean; $(npm bin)/webpack --progress --colors --display-error-details --config webpack/config.cordova.js; npm run cordova:prepare", |
| 25 | + "build:cordova:production": "npm run cordova:clean; NODE_ENV=production $(npm bin)/webpack -p --optimize-dedupe --config webpack/config.cordova.js; npm run cordova:prepare;", |
26 | 26 | "dist:android": "node ./cordova-build --platform android --config release --distribute",
|
27 | 27 | "dist:ios": "node ./cordova-build --platform ios --config release --distribute",
|
28 | 28 | "cordova:clean": "rm -f $(find cordova/www/* 2>/dev/null -type f | grep -v 'gitkeep')",
|
29 | 29 | "cordova:prepare": "cd cordova && cordova prepare",
|
30 |
| - "test": "mocha --recursive --compilers js:babel-register", |
31 |
| - "test:all": "mocha --recursive --compilers js:babel-register $(find . -path ./node_modules -prune -o -name '*.test.js' -print)", |
| 30 | + "test": "$(npm bin)/mocha --recursive --compilers js:babel-register", |
| 31 | + "test:all": "$(npm bin)/mocha --recursive --compilers js:babel-register $(find . -path ./node_modules -prune -o -name '*.test.js' -print)", |
32 | 32 | "test:watch": "npm test -- --watch",
|
33 |
| - "test:all:watch": "mocha --recursive --compilers js:babel-register $(find . -path ./node_modules -prune -o -name '*.test.js' -print) --watch", |
34 |
| - "lint": "eslint --ignore-pattern **/node_modules/* --ext .js,.jsx .", |
| 33 | + "test:all:watch": "$(npm bin)/mocha --recursive --compilers js:babel-register $(find . -path ./node_modules -prune -o -name '*.test.js' -print) --watch", |
| 34 | + "lint": "$(npm bin)/eslint --ignore-pattern **/node_modules/* --ext .js,.jsx .", |
35 | 35 | "postinstall": "if [ \"$NODE_ENV\" = \"production\" ]; then npm run build:production; fi"
|
36 | 36 | },
|
37 | 37 | "devDependencies": {
|
38 |
| - "babel-eslint": "5.0.0", |
| 38 | + "babel-eslint": "6.0.0", |
39 | 39 | "chai": "3.5.0",
|
40 |
| - "chai-immutable": "1.5.3", |
41 |
| - "cordova-lib": "6.0.0", |
42 |
| - "eslint": "2.2.0", |
43 |
| - "eslint-plugin-react": "4.0.0", |
| 40 | + "chai-immutable": "1.5.4", |
| 41 | + "cordova-lib": "6.1.0", |
| 42 | + "eslint": "2.5.3", |
| 43 | + "eslint-plugin-react": "4.2.3", |
44 | 44 | "mocha": "2.4.5",
|
| 45 | + "nodemon": "1.9.1", |
45 | 46 | "react-transform-catch-errors": "1.0.2",
|
46 |
| - "react-transform-hmr": "1.0.2", |
| 47 | + "react-transform-hmr": "1.0.4", |
47 | 48 | "redbox-react": "1.2.2",
|
48 | 49 | "redux-devtools": "3.1.1",
|
49 | 50 | "redux-devtools-dock-monitor": "1.1.0",
|
50 |
| - "redux-devtools-log-monitor": "1.0.4", |
| 51 | + "redux-devtools-log-monitor": "1.0.5", |
51 | 52 | "webpack-dev-server": "1.14.1",
|
52 |
| - "yargs": "4.1.0" |
| 53 | + "yargs": "4.3.2" |
53 | 54 | },
|
54 | 55 | "dependencies": {
|
55 | 56 | "babel": "6.5.2",
|
56 |
| - "babel-core": "6.5.2", |
57 |
| - "babel-loader": "6.2.3", |
58 |
| - "babel-plugin-react-transform": "2.0.0", |
| 57 | + "babel-core": "6.7.4", |
| 58 | + "babel-loader": "6.2.4", |
| 59 | + "babel-plugin-react-transform": "2.0.2", |
59 | 60 | "babel-plugin-syntax-class-properties": "6.5.0",
|
60 | 61 | "babel-plugin-syntax-decorators": "6.5.0",
|
61 | 62 | "babel-plugin-syntax-object-rest-spread": "6.5.0",
|
62 |
| - "babel-plugin-transform-class-properties": "6.5.2", |
63 |
| - "babel-plugin-transform-decorators": "6.5.0", |
64 |
| - "babel-plugin-transform-object-rest-spread": "6.5.0", |
65 |
| - "babel-polyfill": "6.5.0", |
66 |
| - "babel-preset-es2015": "6.5.0", |
| 63 | + "babel-plugin-transform-class-properties": "6.6.0", |
| 64 | + "babel-plugin-transform-decorators": "6.6.5", |
| 65 | + "babel-plugin-transform-object-rest-spread": "6.6.5", |
| 66 | + "babel-polyfill": "6.7.4", |
| 67 | + "babel-preset-es2015": "6.6.0", |
67 | 68 | "babel-preset-react": "6.5.0",
|
68 |
| - "babel-register": "6.5.2", |
| 69 | + "babel-register": "6.7.2", |
69 | 70 | "bootstrap-sass": "3.3.6",
|
70 | 71 | "classnames": "2.2.3",
|
71 | 72 | "compression": "1.6.1",
|
72 |
| - "compression-webpack-plugin": "0.2.0", |
| 73 | + "compression-webpack-plugin": "0.3.1", |
73 | 74 | "css-loader": "0.23.1",
|
74 | 75 | "eslint-loader": "1.3.0",
|
75 | 76 | "expose-loader": "0.7.1",
|
|
78 | 79 | "fastclick": "1.0.6",
|
79 | 80 | "file-loader": "0.8.5",
|
80 | 81 | "font-awesome": "4.5.0",
|
81 |
| - "history": "2.0.0", |
82 |
| - "html-webpack-plugin": "2.9.0", |
| 82 | + "history": "2.0.1", |
| 83 | + "html-webpack-plugin": "2.15.0", |
83 | 84 | "include-media": "1.4.2",
|
84 | 85 | "isomorphic-fetch": "2.2.1",
|
85 | 86 | "json-loader": "0.5.4",
|
86 |
| - "lodash": "4.5.0", |
| 87 | + "lodash": "4.7.0", |
87 | 88 | "node-sass": "3.4.2",
|
88 |
| - "react": "0.14.7", |
89 |
| - "react-dom": "0.14.7", |
90 |
| - "react-redux": "4.4.0", |
91 |
| - "react-router": "2.0.0", |
92 |
| - "react-router-redux": "3.0.0", |
| 89 | + "react": "0.14.8", |
| 90 | + "react-dom": "0.14.8", |
| 91 | + "react-redux": "4.4.1", |
| 92 | + "react-router": "2.0.1", |
| 93 | + "react-router-redux": "4.0.0", |
93 | 94 | "redux": "3.3.1",
|
94 | 95 | "redux-localstorage": "0.4.0",
|
95 |
| - "redux-thunk": "1.0.3", |
96 |
| - "reselect": "2.0.3", |
97 |
| - "sass-loader": "3.1.2", |
| 96 | + "redux-thunk": "2.0.1", |
| 97 | + "reselect": "2.2.1", |
| 98 | + "sass-loader": "3.2.0", |
98 | 99 | "serve-static": "1.10.2",
|
99 |
| - "style-loader": "0.13.0", |
| 100 | + "style-loader": "0.13.1", |
100 | 101 | "url-loader": "0.5.7",
|
101 |
| - "webpack": "1.12.13", |
102 |
| - "webpack-isomorphic-tools": "2.2.29", |
| 102 | + "webpack": "1.12.14", |
| 103 | + "webpack-isomorphic-tools": "2.2.43", |
103 | 104 | "webpack-sources": "0.1.1"
|
104 | 105 | }
|
105 | 106 | }
|
0 commit comments