generator-rct
Version:
Scaffold React applications and its parts
78 lines (77 loc) • 1.67 kB
JSON
{
"name": "generator-rct",
"version": "0.1.1",
"description": "Scaffold React applications and its parts",
"homepage": "",
"author": {
"name": "Julius Koronci",
"email": "jk@web-solutions.sk",
"url": ""
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"React",
"Redux",
"TypeScript",
"Sagas",
"Components",
"Containers",
"yeoman-generator"
],
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-xo": "^0.25.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.0",
"husky": "^1.2.0",
"jest": "^23.5.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.2",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.7.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"@types/enzyme": "^3.1.18",
"@types/jest": "^24.0.6",
"@types/react": "^16.8.3",
"@types/react-redux": "^7.0.1",
"chalk": "^2.1.0",
"enzyme": "^3.9.0",
"lodash": "^4.17.11",
"react": "^16.8.2",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"yeoman-generator": "^2.0.1",
"yosay": "^2.0.1"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"scripts": {
"pretest": "eslint .",
"test": "jest"
},
"repository": "JuliusKoronci/generator-rct",
"license": "MIT"
}