-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.51 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"version": "0.3.11",
"name": "react-native-navigators",
"repository": {
"type": "git",
"url": "[email protected]:shimohq/react-native-navigators.git"
},
"license": "MIT",
"author": {
"name": "Horcrux",
"email": "[email protected]"
},
"homepage": "https://github.com/magicismight/react-native-navigators",
"main": "lib/index.js",
"description": "Native navigators system for react-native",
"scripts": {
"lint": "npx tsc --noEmit && npx eslint ./src/* --fix",
"test": "echo no tests",
"precommit": "lint-staged",
"build": "npx tsc",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"./src/*.ts": [
"npm run lint",
"git add"
]
},
"keywords": [
"react-component",
"react-native",
"navigation",
"navigator",
"ios",
"android"
],
"devDependencies": {
"@types/hoist-non-react-statics": "^3.3.1",
"@types/react": "^16.9.5",
"@types/react-native": "^0.60.19",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"eslint-plugin-react-native": "^3.7.0",
"husky": "^3.0.8",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"react-navigation": "^4.4.3",
"typescript": "^3.7.3"
},
"peerDependencies": {
"react-navigation": ">=4.0.0"
}
}