UNPKG

react-native-ui-lib

Version:

<p align="center"> <img src="https://user-images.githubusercontent.com/1780255/105469025-56759000-5ca0-11eb-993d-3568c1fd54f4.png" height="250px" style="display:block"/> </p> <p align="center">UI Toolset & Components Library for React Native</p> <p a

144 lines (143 loc) 5.29 kB
{ "name": "react-native-ui-lib", "version": "6.9.2", "main": "index.js", "types": "index.d.ts", "author": "Ethan Sharabi <ethan.shar@gmail.com>", "homepage": "https://github.com/wix/react-native-ui-lib", "license": "MIT", "publishConfig": { "registry": "https://registry.npmjs.org/" }, "repository": { "type": "git", "url": "https://github.com/wix/react-native-ui-lib" }, "scripts": { "start": "watchman watch-del-all && export DEV_MODE=true && react-native start", "start-ios": "node ./scripts/cliStuff.js", "ios": "react-native run-ios", "iPad": "react-native run-ios --simulator='iPad Pro (9.7 inch)'", "android": "react-native run-android", "pretest": "npm run lint", "test": "jest", "test:watch": "jest --watch", "lint": "eslint src -c .eslintrc.js --ext .tsx,.ts,.js", "lint:fix": "eslint src -c .eslintrc.js --fix", "lint:test": "mocha --compilers js:babel-core/register eslint-rules/tests/lib/rules", "xcode": "xed ios", "build:dev": "tsc --p tsconfig.dev.json", "build:src": "./node_modules/.bin/babel src --out-dir src --config-file ./src/.babelrc.json --extensions '.ts,.tsx' --ignore 'src/index.ts'", "build:lib": "./node_modules/.bin/babel lib --out-dir lib --config-file ./src/.babelrc.json --extensions '.ts,.tsx'", "build:exports": "npm run build:src && npm run build:lib", "build:packages": "node scripts/buildPackages.js", "build": "tsc --p tsconfig.build.json && npm run build:exports && npm run build:packages", "prepush": "npm run build:dev && npm run test", "log": "react-native log-ios | grep 'ethan -'", "docs:deploy": "./scripts/deployDocs.sh", "docs:build": "node scripts/build-docs.js", "bump:patch": "npm version patch", "demo": "./scripts/demo.sh", "release": "node ./scripts/release.js", "bkRelease": "node ./scripts/bkRelease.js" }, "dependencies": { "babel-plugin-transform-inline-environment-variables": "^0.0.2", "color": "^3.1.0", "commons-validator-js": "^1.0.237", "hoist-non-react-statics": "^3.0.0", "lodash": "^4.0.0", "memoize-one": "^5.0.5", "moment": "^2.24.0", "prop-types": "^15.5.10", "react-freeze": "^1.0.0", "react-native-color": "0.0.10", "react-native-redash": "^12.0.3", "react-native-text-size": "4.0.0-rc.1", "semver": "^5.5.0", "url-parse": "^1.2.0" }, "devDependencies": { "@babel/cli": "^7.10.1", "@babel/core": "^7.12.9", "@babel/preset-env": "^7.3.1", "@babel/preset-react": "^7.10.1", "@babel/runtime": "^7.12.5", "@react-native-community/async-storage": "^1.6.2", "@react-native-community/blur": "^3.4.1", "@react-native-community/datetimepicker": "^3.4.6", "@react-native-community/netinfo": "^5.6.2", "@react-native-picker/picker": "^1.9.4", "@testing-library/react-hooks": "^7.0.2", "@testing-library/react-native": "^7.2.0", "@types/hoist-non-react-statics": "^3.3.1", "@types/lodash": "^4.0.0", "@types/prop-types": "^15.5.3", "@types/react-native": "0.66.4", "@types/tinycolor2": "^1.4.2", "@types/url-parse": "^1.4.3", "@typescript-eslint/eslint-plugin": "4.25.0", "@typescript-eslint/parser": "4.25.0", "@welldone-software/why-did-you-render": "^3.2.1", "babel-jest": "^26.6.3", "babel-plugin-module-resolver": "^4.1.0", "babel-plugin-typescript-to-proptypes": "^1.3.2", "babel-preset-react-native": "*", "eslint": "^7.27.0", "eslint-config-wix": "2.0.0", "eslint-plugin-react": "7.24.0", "eslint-plugin-react-hooks": "^4.0.4", "eslint-plugin-react-native": "^3.11.0", "eslint-plugin-uilib": "file:./eslint-rules", "gatsby": "^2.21.21", "gh-pages": "^1.1.0", "jest": "^26.6.3", "metro-react-native-babel-preset": "^0.66.2", "mocha": "^5.0.0", "prettier-eslint": "12.0.0", "react": "17.0.2", "react-autobind": "^1.0.6", "react-dom": "^15.4.2", "react-native": "0.66.4", "react-native-gesture-handler": "2.1.1", "react-native-haptic-feedback": "^1.11.0", "react-native-keyboard-tracking-view": "^5.6.1", "react-native-linear-gradient": "2.5.6", "react-native-navigation": "^7.19.1", "react-native-reanimated": "2.4.0", "react-native-shimmer-placeholder": "^2.0.6", "react-native-svg": "^12.1.0", "react-native-svg-transformer": "^0.14.3", "react-test-renderer": "^17.0.1", "shell-utils": "^1.0.10", "typescript": "4.3.2" }, "peerDependencies": { "react": ">=17.0.1", "react-native": ">=0.64.1", "react-native-gesture-handler": ">=1.9.0", "react-native-reanimated": ">=2.0.0" }, "jest": { "preset": "react-native", "transformIgnorePatterns": [ "node_modules/(?!(@react-native|react-native|react-native-reanimated|react-native-redash)/)" ], "testPathIgnorePatterns": [ "/e2e/", "/node_modules/", "/typings/", "/expoDemo/", "/uilib-docs/" ], "setupFiles": [ "./jest-setup.js" ], "moduleNameMapper": { "^react-native-reanimated$": "<rootDir>/node_modules/react-native-reanimated/src/Animated.js" }, "transform": { "^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js" } } }