mirror of
https://github.com/carloscuesta/gitmoji.git
synced 2025-12-08 20:14:12 +00:00
Bumps [prettier](https://github.com/prettier/prettier) from 2.6.0 to 2.6.1. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.6.0...2.6.1) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
89 lines
2.1 KiB
JSON
89 lines
2.1 KiB
JSON
{
|
|
"name": "gitmojis",
|
|
"version": "3.9.0",
|
|
"description": "An emoji guide for your commit messages.",
|
|
"private": false,
|
|
"main": "src/data/gitmojis.json",
|
|
"files": [
|
|
"src/data/gitmojis.json"
|
|
],
|
|
"scripts": {
|
|
"build": "next build",
|
|
"dev": "next dev",
|
|
"flow": "flow",
|
|
"lint": "prettier --check src/**/*.{js,json,css}",
|
|
"postbuild": "next-sitemap",
|
|
"start": "next start",
|
|
"test": "jest --coverage",
|
|
"validate:gitmojis": "jsonlint ./src/data/gitmojis.json -V ./src/data/schema.json",
|
|
"prepublishOnly": "npm run validate:gitmojis",
|
|
"prepare": "husky install"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-flow": "^7.0.0",
|
|
"clipboard": "^2.0.4",
|
|
"flow-bin": "^0.174.1",
|
|
"husky": "^7.0.0",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"jest": "^27.0.1",
|
|
"jest-fetch-mock": "^3.0.3",
|
|
"jsonlint": "^1.6.3",
|
|
"lint-staged": "^12.0.2",
|
|
"next": "^12.0.0",
|
|
"next-sitemap": "^2.1.5",
|
|
"prettier": "2.6.1",
|
|
"prop-types": "^15.8.1",
|
|
"react": "^17.0.1",
|
|
"react-dom": "^17.0.1",
|
|
"react-test-renderer": "^17.0.1"
|
|
},
|
|
"author": {
|
|
"name": "carloscuesta",
|
|
"email": "hi@carloscuesta.me",
|
|
"url": "https://carloscuesta.me"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/carloscuesta/gitmoji/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/carloscuesta/gitmoji.git"
|
|
},
|
|
"homepage": "https://gitmoji.dev",
|
|
"keywords": [
|
|
"gitmoji",
|
|
"emoji",
|
|
"carloscuesta",
|
|
"commit"
|
|
],
|
|
"prettier": {
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"arrowParens": "always"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx}": [
|
|
"prettier --write src/**/*.{js,json,css}",
|
|
"git add"
|
|
]
|
|
},
|
|
"jest": {
|
|
"collectCoverageFrom": [
|
|
"src/**/*.{js,jsx}"
|
|
],
|
|
"testMatch": [
|
|
"**/*.(spec).(js)"
|
|
],
|
|
"moduleNameMapper": {
|
|
"^.+\\.css$": "identity-obj-proxy",
|
|
"src/(.*)$": "<rootDir>/src/$1"
|
|
},
|
|
"testEnvironment": "jsdom"
|
|
},
|
|
"dependencies": {
|
|
"focus-trap-react": "^8.9.0",
|
|
"next-pwa": "^5.4.4"
|
|
}
|
|
}
|