Skip to content

Instantly share code, notes, and snippets.

@danilosilvadev
Last active February 6, 2019 19:27
Show Gist options
  • Save danilosilvadev/77ade6f9e09d9dd12c113c10cdada664 to your computer and use it in GitHub Desktop.
Save danilosilvadev/77ade6f9e09d9dd12c113c10cdada664 to your computer and use it in GitHub Desktop.
{
"name": "@bluefoot/mirch",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/preset-env": "^7.0.0",
"@bluefoot/ymir": "^0.3.8",
"axios": "^0.18.0",
"html-react-parser": "^0.6.1",
"husky": "^1.3.1",
"js-cookie": "^2.2.0",
"jump.js": "^1.0.2",
"lint-staged": "^8.1.0",
"lodash": "^4.17.11",
"md5-hex": "^2.0.0",
"prettier": "^1.15.3",
"randomstring": "^1.1.5",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-icons": "^3.3.0",
"react-input-mask": "^2.0.4",
"react-scripts": "2.1.3",
"react-slick": "^0.23.2",
"slick-carousel": "^1.8.1",
"styled-components": "^4.1.3",
"stylelint": "^9.9.0",
"stylelint-config-standard": "^18.2.0"
},
"scripts": {
"start": "react-scripts start",
"react:build": "react-scripts build",
"eject": "react-scripts eject",
"fix-js": "eslint --fix --ext .js --ext .jsx src/",
"fix-css": "stylelint '**/*.scss' '**/*.css' --fix",
"precommit": "lint-staged",
"test:lint:js": "eslint --ext=js --ext=jsx .",
"test:lint:scss": "stylelint --config=.stylelintrc '**/*.scss'",
"test:lint": "run-s test:lint:**",
"test:unit": "react-scripts test --env=jsdom --verbose=true",
"test": "run-s test:**",
"build": "NODE_ENV=production babel src/lib --out-dir -d dist --ignore **/*.spec.js"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --fix",
"git add"
],
"src/**/*.{scss,css}": [
"stylelint --config=.stylelintrc --fix",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-transform-replace-object-assign": "^2.0.0",
"babel-preset-airbnb": "^3.2.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.4.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.3",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.13.1",
"undefined": "^0.1.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment