forked from kanzitelli/rn-navio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.84 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
60
61
{
"name": "rn-navio",
"version": "0.0.1",
"description": "🧭 Navio - navigation library for React Native (Expo). Build the app's layout in one place and use benefits of types predictibility. Built on top of React Navigation (RNN will be added soon).",
"author": "Batyr <[email protected]>",
"homepage": "https://github.com/kanzitelli/rn-navio",
"bugs": "https://github.com/kanzitelli/rn-navio/issues",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"format": "prettier --write \"{src,}/**/*.{ts,tsx}\"",
"build": "run-s clean format build:*",
"build:main": "tsc -p tsconfig.json",
"release": "run-s release:github release:npm",
"release:github": "dotenv release-it",
"release:npm": "npm publish --access public",
"release:npm:next": "run-s build && npm publish --tag next"
},
"peerDependencies": {
"@react-navigation/bottom-tabs": "^6.4.0",
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.0",
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.1.0",
"@react-navigation/bottom-tabs": "^6.4.0",
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.0",
"@tsconfig/react-native": "^2.0.2",
"@types/react": "^18.0.21",
"dotenv-cli": "^6.0.0",
"eslint": "^8.24.0",
"husky": "^8.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"release-it": "^15.4.2",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"keywords": [
"react-native",
"react-navigation",
"react-native-navigation",
"expo",
"navio",
"rn-navio"
],
"license": "MIT"
}