-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.64 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
102
103
104
105
{
"name": "react-native-guide",
"version": "0.5.2",
"description": "react native tourguide",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"*.podspec",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"example": "yarn workspace example",
"test": "jest",
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"prepare": "bob build",
"release": "release-it"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fijit-club/react-native-guide.git"
},
"author": "Laxman Desai <[email protected]> (https://github.com/relaxxpls)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fijit-club/react-native-guide/issues"
},
"homepage": "https://github.com/fijit-club/react-native-guide#readme",
"dependencies": {
"react": "18.2.0",
"react-native": "0.73.6",
"react-native-hole-view": "3.0.0-alpha4",
"react-native-reanimated": "^3.8.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@evilmartians/lefthook": "^1.6.8",
"@react-native/eslint-config": "^0.73.2",
"@release-it/conventional-changelog": "^8.0.1",
"@tsconfig/strictest": "^2.0.5",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.74",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-perfectionist": "^2.7.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "3.2.5",
"react-native-builder-bob": "^0.23.2",
"release-it": "^17.1.1",
"typescript": "5.4.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-hole-view": "*",
"react-native-reanimated": "*"
},
"workspaces": [
"example"
],
"packageManager": "[email protected]",
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}