-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.56 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
{
"name": "stargazers-viewer",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"build:ios": "eas build -p ios --profile preview --local",
"build:android": "eas build -p android --profile preview --local",
"build:ios:production": "eas build -p ios --local",
"build:android:production": "eas build -p android --local",
"eject": "expo eject",
"lint": "eslint .",
"format": "prettier --write '**/*.js'",
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage"
},
"dependencies": {
"@react-native-masked-view/masked-view": "0.2.7",
"@react-navigation/native": "^6.0.6",
"@react-navigation/native-stack": "^6.9.9",
"@react-navigation/stack": "^6.0.11",
"axios": "^1.3.0",
"expo": "^46.0.0",
"expo-splash-screen": "~0.16.2",
"expo-status-bar": "~1.4.0",
"expo-updates": "~0.14.7",
"lodash": "^4.17.21",
"lottie-react-native": "^5.1.3",
"moment": "^2.29.4",
"native-base": "^3.4.25",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.6",
"react-native-gesture-handler": "~2.5.0",
"react-native-reanimated": "~2.9.1",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-svg": "12.3.0",
"react-native-web": "~0.18.7"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-native": "^5.4.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^11.5.1",
"@types/enzyme": "^3.10.12",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.191",
"@types/react-native": "~0.69.1",
"@types/react-test-renderer": "^18.0.0",
"eslint": "^7.24.0",
"eslint-config-handlebarlabs": "^0.0.6",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^29.4.1",
"jest-expo": "^46.0.0",
"prettier": "^2.2.1",
"react-test-renderer": "18.0.0",
"ts-jest": "^27.0.7",
"typescript": "^4.6.3"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
],
"setupFiles": [
"./setupTests.ts"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
]
},
"author": "Alessandro Izzo",
"private": true
}