https://github.com/oblador/react-native-vector-icons
Raw File
Tip revision: 8312c6cbb6fc5d7e35a8a752532281bfbaae4f07 authored by John Ferlito on 16 March 2024, 09:38:41 UTC
Publish
Tip revision: 8312c6c
package.json
{
  "private": true,
  "version": "0.0.1",
  "workspaces": [
    "packages/*"
  ],
  "scripts": {
    "build": "scripts/build.sh",
    "clean": "lerna run run clean",
    "prepare": "lerna run prepare",
    "format": "prettier **/*.{ts,tsx} --write",
    "test": "lerna run test",
    "lint": "eslint \"**/*.{js,ts,tsx}\"; biome check .",
    "release": "lerna publish --no-private",
    "build-web": "rm -rf ./dist && babel *.js --out-dir ./dist && babel lib --out-dir ./dist/lib && cp -R ./glyphmaps ./dist/glyphmaps"
  },
  "devDependencies": {
    "@biomejs/biome": "1.6.1",
    "@testing-library/dom": "^9.3.4",
    "@types/eslint": "^8.56.5",
    "@typescript-eslint/eslint-plugin": "^7.2.0",
    "@typescript-eslint/parser": "^7.2.0",
    "eslint": "^8.57.0",
    "eslint-config-airbnb": "^19.0.4",
    "eslint-config-airbnb-typescript": "^18.0.0",
    "eslint-config-biome": "^1.5.3",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-jsx-a11y": "^6.8.0",
    "eslint-plugin-react": "^7.34.1",
    "eslint-plugin-react-hooks": "^4.6.0",
    "lerna": "^8.1.2",
    "typescript": "^5.4.2"
  },
  "eslintConfig": {
    "root": true,
    "extends": [
      "@react-native",
      "airbnb",
      "airbnb-typescript",
      "prettier",
      "plugin:import/typescript"
    ],
    "rules": {
      "no-unused-vars": "off",
      "@typescript-eslint/no-unused-vars": [
        "error"
      ],
      "prettier/prettier": [
        "error",
        {
          "quoteProps": "consistent",
          "singleQuote": true,
          "tabWidth": 2,
          "trailingComma": "es5",
          "useTabs": false
        }
      ],
      "react/function-component-definition": "off",
      "FIXME: Something wrong above": "off",
      "import/prefer-default-export": "off",
      "react/jsx-props-no-spreading": "off",
      "react/require-default-props": "off"
    }
  },
  "eslintIgnore": [
    "node_modules/",
    "lib/"
  ],
  "prettier": {
    "quoteProps": "consistent",
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "es5",
    "useTabs": false
  },
  "packageManager": "yarn@4.1.1",
  "repository": {
    "url": "https://github.com/oblador/react-native-vector-icons",
    "type": "git"
  }
}
back to top