Skip to content

Commit

Permalink
Initial
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfeijo committed Dec 14, 2020
1 parent 4d6a668 commit 7391e55
Show file tree
Hide file tree
Showing 10 changed files with 5,137 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
/lib
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v10.14.2
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"printWidth": 120,
"trailingComma": "all",
"singleQuote": true,
"semi": false
}
14 changes: 14 additions & 0 deletions jestconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
52 changes: 52 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"name": "react-native-reply",
"version": "1.0.0",
"description": "Easy @mentions, non-intrusive logic, BYO TextInput",
"files": [
"lib/**/*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "yarn build",
"prepublishOnly": "yarn lint",
"preversion": "yarn lint",
"build": "tsc",
"format": "prettier --write \"src/**/*.tsx\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasfeijo/react-native-reply.git"
},
"keywords": [
"react-native",
"reply",
"mentions",
"text-input",
"tags"
],
"author": "lucasfeijo",
"license": "MIT",
"bugs": {
"url": "https://github.com/lucasfeijo/react-native-reply/issues"
},
"homepage": "https://github.com/lucasfeijo/react-native-reply#readme",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/runtime": "^7.10.5",
"@types/react": "^16.9.23",
"@types/react-native": "^0.61.17",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "^1.19.1",
"react": "16.9.0",
"react-native": "0.59.10",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": "^16.8.6",
"react-native": ">=0.59.10"
}
}
Loading

0 comments on commit 7391e55

Please sign in to comment.