New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

startreact

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

startreact - npm Package Compare versions

Comparing version
1.3.3
to
1.4.0
+1
-1
package.json
{
"name": "startreact",
"version": "1.3.3",
"version": "1.4.0",
"description": "React + Redux + Hot + Webpack + Express Template Generator",

@@ -5,0 +5,0 @@ "main": "",

@@ -8,4 +8,5 @@ {

"test": "cross-env NODE_ENV=test mocha --recursive --compilers js:babel-register --require ./src/test/**/*.js",
"start": "./node_modules/.bin/babel-node server",
"build": "./node_modules/.bin/rimraf ./build && set NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors"
"dev": "./node_modules/.bin/babel-node server",
"production": "NODE_ENV=production ./node_modules/.bin/babel-node server",
"build": "./node_modules/.bin/rimraf ./build && NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors"
},

@@ -12,0 +13,0 @@ "author": "haochuan",

@@ -89,4 +89,6 @@ import express from 'express';

console.log('Server listening at http://%s:%s', host, port);
var envString = isProduction ? "Production" : "Development";
console.log(envString + ' server listening at http://%s:%s', host, port);
});

@@ -93,0 +95,0 @@

@@ -6,5 +6,5 @@ import * as ActionTypes from '../constants';

return ((dispatch, getState) => {
return {
dispatch({
type: ActionTypes.INCREMENT
};
});
});

@@ -16,6 +16,6 @@ }

return ((dispatch, getState) => {
return {
dispatch({
type: ActionTypes.DECREMENT
};
});
});
}