favycon/package.json
Rui Saraiva b183cc9fef
feat: setup next, eslint, stylelint, and typescript (#5)
* feat: setup next, eslint, stylelint, and typescript

* ci: add Semantic Pull Requests config

* ci: add renovate config

* ci: add commit lint workflow

* ci: add code lint workflow

* ci: add release workflow

* docs(ci): add status badges for release, lint, and commitlint

* ci: add now config

* chore: update repo name

* ci(release): remove assets from release
2020-04-10 22:34:32 +01:00

86 lines
2.1 KiB
JSON

{
"name": "favycon",
"version": "1.0.0",
"description": "Favicon generator tool",
"repository": {
"type": "git",
"url": "git+https://github.com/ruisaraiva19/favycon.git"
},
"keywords": [
"favicon",
"generator",
"tool"
],
"author": {
"name": "Rui Saraiva",
"email": "ruisaraiva19@gmail.com",
"url": "https://ruisaraiva.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ruisaraiva19/favycon/issues"
},
"homepage": "https://github.com/ruisaraiva19/favycon#readme",
"engines": {
"node": ">= 12.x",
"yarn": "^1.16.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npm-run-all --parallel lint:*",
"lint:types": "tsc",
"lint:scripts": "eslint './**/*.tsx' './**/*.ts' './**/*.js'",
"lint:css": "stylelint './**/*.css' './**/*.scss'",
"commit": "git-cz"
},
"dependencies": {
"next": "9.3.4",
"preact": "10.4.0",
"preact-render-to-string": "5.1.6",
"preact-ssr-prepass": "1.0.1",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@types/node": "13.11.1",
"@types/react": "16.9.34",
"@typescript-eslint/eslint-plugin": "2.27.0",
"@typescript-eslint/parser": "2.27.0",
"babel-eslint": "10.1.0",
"commitizen": "4.0.4",
"cz-conventional-changelog": "3.1.0",
"dotenv": "8.2.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-config-react": "1.1.7",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.1",
"husky": "4.2.5",
"lint-staged": "10.1.3",
"npm-run-all": "4.1.5",
"prettier": "2.0.4",
"sass": "1.26.3",
"semantic-release": "17.0.4",
"stylelint": "13.3.1",
"stylelint-config-prettier": "8.0.1",
"stylelint-config-recess-order": "2.0.4",
"stylelint-config-standard": "20.0.0",
"stylelint-prettier": "1.1.2",
"typescript": "3.8.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}