-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.75 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.75 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "react-navigation-helpers",
"version": "2.2.0",
"description": "Easy to use React Navigation with these helpers for React Navigation on React Native",
"keywords": [
"v5",
"helpers",
"react-navigation-helpers",
"@react-navigation-helpers",
"@react-navigation",
"react-navigation",
"navigation",
"FreakyCoder",
"freakycoder",
"kuray",
"Kuray",
"react",
"react-native",
"javascript",
"ui-lib",
"rn"
],
"homepage": "https://www.freakycoder.com",
"bugs": "https://github.com/WrathChaos/react-navigation-helpers/issues",
"main": "./build/dist/NavigationService.js",
"repository": "git@github.com:WrathChaos/react-navigation-helpers.git",
"author": "Kuray (FreakyCoder) <kurayogun@gmail.com>",
"license": "MIT",
"peerDependencies": {
"@react-navigation/native": ">= 4.x.x"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.5",
"@babel/runtime": "^7.16.3",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@react-native-community/eslint-config": "^3.0.1",
"@types/lodash": "^4.14.181",
"@types/node": "^18.0.0",
"@types/react-native": "^0.69.0",
"@types/react-native-restart": "^0.0.14",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard-react-native": "1.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.31.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-native": "4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"metro-react-native-babel-preset": "^0.72.0",
"prettier": "^2.5.1",
"typescript": "^4.5.3"
},
"scripts": {
"build": "cd lib && tsc && cp ../package.json ../build/dist/ && Echo Build completed!",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"prettier": "cd lib && npx prettier --write . && git add .",
"prepare": "husky install",
"husky:setup": "npx husky-init && npm run husky:commitlint && npm run husky:prettier && npm run husky:lint",
"husky:commitlint": "npx husky add .husky/commit-msg 'npx --no-install commitlint --edit'",
"husky:prettier": "npx husky set .husky/pre-commit 'npm run prettier'",
"husky:lint": "npx husky add .husky/pre-commit 'npm run lint'"
}
}