-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.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
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
106
107
{
"name": "impact",
"homepage": "http://jessy-bgl.github.io/impact",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"typecheck": "tsc --no-emit",
"lint": "eslint . && npm run typecheck",
"lint-staged": "lint-staged",
"prettier": "prettier --write",
"prepare": "husky install .husky",
"test": "cross-env NODE_ENV=test jest",
"test:cov": "cross-env NODE_ENV=test jest --coverage",
"build:web": "mkdir -p public && touch public/.nojekyll && expo export -p web && npx workbox-cli generateSW workbox-config.js",
"deploy:web": "gh-pages -t -d dist"
},
"dependencies": {
"@babel/plugin-proposal-export-namespace-from": "7.18.9",
"@expo/vector-icons": "14.0.2",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-picker/picker": "2.7.7",
"@react-navigation/bottom-tabs": "6.5.20",
"@react-navigation/drawer": "6.6.15",
"@react-navigation/material-top-tabs": "6.6.13",
"@react-navigation/native": "6.1.17",
"@react-navigation/native-stack": "6.9.26",
"@react-navigation/stack": "6.3.29",
"@shopify/react-native-skia": "1.3.3",
"@types/lodash": "4.17.5",
"deepmerge": "4.3.1",
"expo": "51.0.13",
"expo-crypto": "13.0.2",
"expo-linear-gradient": "13.0.2",
"expo-status-bar": "1.12.1",
"expo-system-ui": "3.0.6",
"i18next": "23.11.5",
"intl-pluralrules": "2.0.1",
"jest": "29.7.0",
"jest-expo": "51.0.2",
"lodash": "4.17.21",
"moti": "0.29.0",
"react": "18.2.0",
"react-art": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.51.5",
"react-i18next": "14.1.2",
"react-native": "0.74.2",
"react-native-gesture-handler": "2.16.2",
"react-native-pager-view": "6.3.1",
"react-native-paper": "5.12.3",
"react-native-reanimated": "3.10.1",
"react-native-safe-area-context": "4.10.4",
"react-native-screens": "3.31.1",
"react-native-svg": "15.3.0",
"react-native-svg-transformer": "1.4.0",
"react-native-tab-view": "3.5.2",
"react-native-web": "0.19.12",
"react-native-webview": "13.10.3",
"react-test-renderer": "18.2.0",
"victory": "37.0.2",
"victory-native": "41.0.0",
"zustand": "4.5.2"
},
"devDependencies": {
"@babel/core": "7.24.7",
"@expo/metro-config": "0.18.6",
"@expo/metro-runtime": "3.2.1",
"@testing-library/jest-native": "5.4.3",
"@testing-library/react-native": "12.5.1",
"@types/jest": "29.5.12",
"@types/react": "18.3.3",
"@typescript-eslint/eslint-plugin": "7.13.0",
"cross-env": "7.0.3",
"eslint": "8.56.0",
"eslint-config-universe": "13.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-react": "7.34.2",
"eslint-plugin-react-hooks": "4.6.2",
"gh-pages": "6.1.1",
"husky": "9.0.11",
"lint-staged": "15.2.6",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"workbox-background-sync": "7.1.0",
"workbox-broadcast-update": "7.1.0",
"workbox-cacheable-response": "7.1.0",
"workbox-core": "7.1.0",
"workbox-expiration": "7.1.0",
"workbox-google-analytics": "7.1.0",
"workbox-navigation-preload": "7.1.0",
"workbox-precaching": "7.1.0",
"workbox-range-requests": "7.1.0",
"workbox-routing": "7.1.0",
"workbox-strategies": "7.1.0",
"workbox-streams": "7.1.0"
},
"overrides": {
"react-native-picker-select": {
"@react-native-picker/picker": "$@react-native-picker/picker"
}
}
}