UNPKG

react-ark-tools

Version:

Boilerplate and tooling for JavaScript application development with React

143 lines (142 loc) 3.68 kB
{ "name": "react-ark-tools", "version": "1.1.3", "description": "Boilerplate and tooling for JavaScript application development with React", "repository": "augusto-santos/react-app", "author": "Kriasoft <hello@kriasoft.com> (https://www.kriasoft.com)", "contributors": [ "Konstantin Tarkus <hello@tarkus.me> (https://tarkus.me)" ], "license": "MIT", "keywords": [ "react", "reactjs", "webpack", "babel", "es6", "es2015", "jsx", "redux", "browsersync", "browser-sync", "template", "templates", "boilerplate", "scarrold", "scaffolding" ], "engines": { "node": ">=6", "npm": ">=3.8" }, "files": [ "scripts", "templates", "run.js", "webpack.config.js" ], "dependencies": { "assets-webpack-plugin": "^3.4.0", "autoprefixer": "^6.4.0", "babel-core": "^6.11.4", "babel-eslint": "^6.1.2", "babel-loader": "^6.2.4", "babel-plugin-transform-runtime": "^6.12.0", "babel-preset-es2015": "^6.9.0", "babel-preset-react": "^6.11.1", "babel-preset-stage-1": "^6.5.0", "babel-register": "^6.11.6", "babel-runtime": "^6.11.6", "browser-sync": "^2.14.0", "chai": "^3.5.0", "chalk": "^1.1.3", "connect-history-api-fallback": "^1.2.0", "cpy": "^4.0.1", "css-loader": "^0.23.1", "del": "^2.2.1", "ejs": "^2.5.1", "eslint": "^3.2.2", "eslint-config-airbnb": "^10.0.0", "eslint-plugin-import": "^1.12.0", "eslint-plugin-jsx-a11y": "^2.0.1", "eslint-plugin-react": "^6.0.0", "file-loader": "^0.9.0", "front-matter": "^2.1.0", "highlight.js": "^9.5.0", "json-loader": "^0.5.4", "markdown-it": "^7.0.0", "path-to-regexp": "^1.5.3", "pixrem": "^3.0.1", "pleeease-filters": "^3.0.0", "postcss": "^5.1.1", "postcss-calc": "^5.3.0", "postcss-color-function": "^2.0.1", "postcss-custom-media": "^5.0.1", "postcss-custom-properties": "^5.0.1", "postcss-custom-selectors": "^3.0.0", "postcss-import": "^8.1.2", "postcss-flexbugs-fixes": "^2.0.0", "postcss-loader": "^0.9.1", "postcss-media-minmax": "^2.1.2", "postcss-nesting": "^2.3.1", "postcss-selector-matches": "^2.0.1", "postcss-selector-not": "^2.0.0", "react-hot-loader": "^3.0.0-beta.2", "style-loader": "^0.13.1", "stylelint": "^7.1.0", "stylelint-config-standard": "^12.0.0", "url-loader": "^0.5.7", "webpack": "^1.13.1", "webpack-dev-middleware": "^1.6.1", "webpack-hot-middleware": "^2.12.2" }, "optionalDependencies": { "react-app": "^1.1.2" }, "devDependencies": { "history": "^3.0.0", "react": "^15.3.0", "react-dom": "^15.3.0", "react-redux": "^4.4.5", "redux": "^3.5.2" }, "babel": { "presets": [ "react", "es2015", "stage-1" ], "plugins": [ "transform-runtime" ] }, "eslintConfig": { "parser": "babel-eslint", "extends": "airbnb", "rules": { "react/jsx-filename-extension": [ 1, { "extensions": [ ".js", ".jsx" ] } ] } }, "stylelint": { "extends": "stylelint-config-standard", "rules": { "string-quotes": "single" } }, "scripts": { "lint": "eslint app scripts templates/app run.js webpack.config.js", "test": "mocha --compilers js:babel-register", "test:watch": "mocha --compilers js:babel-register --reporter min --watch", "new": "node ./app/bin/react-app new --test-sdk", "build": "node ./app/bin/react-app build --test-sdk", "start": "node ./app/bin/react-app run --test-sdk" } }