-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.79 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@force-dev/react-mobile",
"version": "0.0.138",
"description": "React Native components library",
"main": "src/index.ts",
"files": [
"src",
"android",
"ios",
"cpp",
"*.podspec",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"sideEffects": false,
"license": "MIT",
"engines": {
"npm": ">=8.5.0",
"yarn": ">=1.22.18",
"node": ">=16.14.2"
},
"homepage": "https://github.com/epifanovmd/react-mobile",
"author": {
"name": "Epifanov Andrei",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/epifanovmd/react-mobile.git"
},
"scripts": {
"reinstall": "rm -rf node_modules/ && npm i && npx --yes npm-install-peers",
"VERSION:PATCH": "npm version patch",
"VERSION:MINOR": "npm version minor",
"VERSION:MAJOR": "npm version major",
"lint": "eslint \"src/**/*{.ts,.tsx}\"",
"lint:fix": "eslint --fix \"src/**/*{.ts,.tsx}\"",
"prettier:fix": "prettier --parser typescript --write src/**/*.{ts,tsx}",
"check-packages-updates": "yarn outdated"
},
"dependencies": {
"@force-dev/react": "^1.1.2",
"@gorhom/bottom-sheet": "^5.0.5",
"@gorhom/portal": "^1.0.14",
"@react-native-community/blur": "^4.4.0",
"react-native-iphone-x-helper": "^1.3.1",
"react-native-reanimated": "^3.6.2"
},
"peerDependencies": {
"@force-dev/utils": "^1.1.59",
"lodash": "^4.17.21",
"mobx": "^6.10.2",
"react": "^18.2.0",
"react-native": "^0.73.1",
"react-native-gesture-handler": "^2.14.0",
"react-native-haptic-feedback": "^2.2.0",
"react-native-safe-area-context": "^4.7.4",
"react-native-svg": "^14.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@react-native-community/eslint-config": "^3.2.0",
"@tsconfig/react-native": "^3.0.2",
"@types/jest": "^29.5.10",
"@types/lodash": "^4.14.190",
"@types/react": "^18.2.39",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"babel-loader": "^9.1.0",
"eslint": "8.22.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^4.3.7",
"lint-staged": "^13.0.3",
"prettier": "^2.8.0",
"typescript": "^4.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix \"src/**/*{.ts,.tsx}\"",
"prettier --parser typescript --write src/**/*.{ts,tsx}",
"git add"
]
}
}