-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.75 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
{
"name": "react-native-pan-zoom-shared-values",
"version": "1.0.0",
"description": "A pan and zoom gesture control package for React Native that allows a user to pass their own shared values as props",
"main": "src/index.tsx",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZacMossHK/react-native-pan-zoom-shared-values.git"
},
"author": "Zac Moss",
"license": "ISC",
"bugs": {
"url": "https://github.com/ZacMossHK/react-native-pan-zoom-shared-values/issues"
},
"homepage": "https://github.com/ZacMossHK/react-native-pan-zoom-shared-values#readme",
"dependencies": {
"react": "^18.3.1",
"react-native": "^0.75.3",
"react-native-gesture-handler": "^2.20.0",
"react-native-redash": "^18.1.3"
},
"peerDependencies": {
"react-native-reanimated": "3.x"
},
"types": "src/types.d.ts",
"devDependencies": {
"react-native-reanimated": "^3.15.3",
"@babel/plugin-transform-private-methods": "^7.25.7",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.7.2",
"@types/jest": "^29.5.13",
"babel-jest": "^29.7.0",
"babel-plugin-transform-class-properties": "^6.10.2",
"jest": "^29.7.0",
"jest-expo": "^51.0.4",
"metro-react-native-babel-preset": "^0.77.0"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@sentry/react-native|native-base|react-native-svg)"
],
"setupFiles": [
"./node_modules/react-native-gesture-handler/jestSetup.js"
],
"transform": {
"^.+\\.jsx?$": "./babel-jest.js"
}
}
}