{
|
|
"name": "react-slingshot",
|
|
"version": "1.2.0",
|
|
"description": "Starter kit for creating apps with React and Redux",
|
|
"scripts": {
|
|
"prestart": "npm run remove-dist",
|
|
"start": "parallelshell \"npm run lint:tools\" \"npm run test:watch\" \"npm run open:src\"",
|
|
"open:src": "babel-node tools/srcServer.js",
|
|
"open:dist": "babel-node tools/distServer.js",
|
|
"lint:tools": "eslint webpack.config.js tools",
|
|
"clean-dist": "npm run remove-dist && mkdir dist",
|
|
"remove-dist": "node_modules/.bin/rimraf ./dist",
|
|
"build:html": "babel-node tools/buildHtml.js",
|
|
"prebuild": "npm run clean-dist && npm run build:html",
|
|
"build": "npm run test && babel-node tools/build.js && npm run open:dist",
|
|
"test": "cross-env NODE_ENV=test mocha --reporter progress --compilers js:babel-core/register --recursive \"./src/**/*.spec.js\"",
|
|
"test:watch": "npm run test -- --watch"
|
|
},
|
|
"author": "Cory House",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"object-assign": "4.0.1",
|
|
"react": "0.14.7",
|
|
"react-dom": "0.14.7",
|
|
"react-redux": "4.4.0",
|
|
"redux": "3.3.1",
|
|
"redux-form": "~4.2.0",
|
|
"redux-thunk": "~2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "6.5.1",
|
|
"babel-core": "6.5.1",
|
|
"babel-eslint": "5.0.0",
|
|
"babel-loader": "6.2.3",
|
|
"babel-plugin-react-display-name": "2.0.0",
|
|
"babel-plugin-react-transform": "2.0.0",
|
|
"babel-preset-es2015": "6.5.0",
|
|
"babel-preset-react": "6.5.0",
|
|
"babel-preset-stage-1": "6.5.0",
|
|
"browser-sync": "2.11.1",
|
|
"chai": "3.4.1",
|
|
"cheerio": "0.19.0",
|
|
"colors": "1.1.2",
|
|
"cross-env": "1.0.7",
|
|
"css-loader": "0.23.1",
|
|
"eslint": "2.2.0",
|
|
"eslint-loader": "1.3.0",
|
|
"eslint-plugin-react": "4.0.0",
|
|
"extract-text-webpack-plugin": "1.0.1",
|
|
"file-loader": "0.8.5",
|
|
"mocha": "2.3.4",
|
|
"node-sass": "3.4.2",
|
|
"parallelshell": "2.0.0",
|
|
"react-transform-catch-errors": "1.0.1",
|
|
"react-transform-hmr": "1.0.1",
|
|
"redbox-react": "1.2.0",
|
|
"rimraf": "2.5.0",
|
|
"sass-loader": "3.1.2",
|
|
"style-loader": "0.13.0",
|
|
"watch": "0.17.1",
|
|
"webpack": "1.12.11",
|
|
"webpack-dev-middleware": "1.4.0",
|
|
"webpack-hot-middleware": "2.6.0",
|
|
"yargs": "3.32.0"
|
|
},
|
|
"keywords:": [
|
|
"react",
|
|
"reactjs",
|
|
"hot",
|
|
"reload",
|
|
"hmr",
|
|
"live",
|
|
"edit",
|
|
"webpack",
|
|
"redux",
|
|
"flux",
|
|
"boilerplate",
|
|
"starter"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/coryhouse/react-slingshot"
|
|
}
|
|
}
|