-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.69 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
{
"name": "rnn-screens",
"version": "0.3.2",
"description": "Predictable Navigation for React Native.",
"author": "Batyr (dev@batyr.io) (https://github.com/kanzitelli)",
"homepage": "https://github.com/kanzitelli/rnn-screens",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prebuild": "rm -rf lib",
"build": "tsc && echo Build completed!",
"postbuild": "prettier --write ./lib",
"clean": "rm -rf ./node_modules ./package-lock.json && yarn",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format:check": "prettier --check ./src",
"format:write": "prettier --write ./src",
"release": "npm run release:github && npm publish --access public",
"release:github": "npm run build && dotenv release-it",
"release:npm:public": "npm run build && npm publish --access public",
"release:npm:private": "npm run build && npm publish",
"publish:npm:next": "npm run build && npm publish --tag next"
},
"keywords": [
"react",
"react-native",
"react-native-navigation",
"rnn-screens",
"rnn-starter"
],
"peerDependencies": {
"lodash": ">= 4.0.0",
"react": "*",
"react-native": "*",
"react-native-navigation": ">= 7.x.x"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.0.1",
"@tsconfig/react-native": "^1.0.4",
"@types/lodash": "^4.14.176",
"@types/react": "^17.0.33",
"@types/react-native": "^0.66.1",
"dotenv-cli": "^4.0.0",
"eslint": "^8.1.0",
"lodash": "^4.17.21",
"prettier": "^2.4.1",
"react": "^18.2.0",
"react-native": "^0.69.5",
"react-native-navigation": "^7.31.0",
"typescript": "^4.4.4"
},
"license": "MIT"
}