fullstrapp
Version:
Bootstrap a scalable full stack application with pre-configured: hosting, database, authentication, analytics, CI, CD, code templates, and issue templates.
73 lines (72 loc) • 1.71 kB
JSON
{
"name": "fullstrapp",
"version": "0.9.1",
"description": "Bootstrap a scalable full stack application with pre-configured: hosting, database, authentication, analytics, CI, CD, code templates, and issue templates.",
"keywords": [
"react",
"material-ui",
"firebase",
"typescript",
"pwa",
"fullstack",
"bootstrap"
],
"homepage": "https://github.com/eddedd88/fullstrapp",
"bugs": "https://github.com/eddedd88/fullstrapp/issues",
"author": {
"name": "Eduardo Duran",
"email": "eduardo.durandiaz@gmail.com",
"url": "https://edurandiaz.com/"
},
"license": "MIT",
"bin": {
"fullstrapp": "index.js"
},
"files": [
"docs/",
"template/",
"README.md",
"index.js",
"LICENSE"
],
"dependencies": {
"chalk": "^2.4.2",
"deepmerge": "^4.1.1",
"envfile": "^3.0.0",
"fs-extra": "^8.1.0",
"inquirer": "^7.0.0",
"os": "^0.1.1",
"shelljs": "^0.8.3"
},
"devDependencies": {
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2"
},
"scripts": {
"test": "echo \"TODO write tests\"",
"ci": "yarn test",
"format": "prettier --write --single-quote --no-semi --jsx-single-quote \"{index.js,template/src/**/*.{ts,tsx,js,json,css,md}}\""
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{index.js,template/src/**/*.{ts,tsx,js,json,css,md}}": [
"prettier --write --single-quote --no-semi --jsx-single-quote",
"git add"
]
}
}