-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.31 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": "kogo",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "jest -c jest.config.js --forceExit",
"test:unit": "jest -c jest.config.js --forceExit",
"test:integration": "jest -c jest.config.integration.js --forceExit",
"test:e2e": "",
"lint": "echo \"\\033[33mRunning eslint check\" && eslint src/**/*.ts{,x}",
"tsc": "echo \"\\033[33mRunning typescript check\" && tsc",
"prettier": "prettier --write src",
"storybook": "sb-rn-get-stories && STORYBOOK_ENABLED='true' expo start",
"storybook-watch": "sb-rn-watcher"
},
"dependencies": {
"@expo/vector-icons": "^14.0.0",
"@hookform/resolvers": "^3.3.4",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/netinfo": "11.3.1",
"@react-navigation/bottom-tabs": "^6.5.11",
"@react-navigation/native": "^6.1.9",
"@react-navigation/native-stack": "^6.9.17",
"@sentry/react-native": "~5.22.0",
"@tanstack/react-query": "^5.17.19",
"axios": "^1.6.7",
"eslint": "^8.55.0",
"eslint-config-universe": "^12.0.0",
"expo": "~51.0.7",
"expo-constants": "~16.0.1",
"expo-secure-store": "^13.0.2",
"expo-status-bar": "~1.12.1",
"expo-updates": "~0.25.13",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-hook-form": "^7.49.2",
"react-native": "0.74.1",
"react-native-responsive-screen": "^1.4.2",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-svg": "15.2.0",
"react-native-svg-transformer": "^1.3.0",
"react-native-swiper": "^1.6.0",
"react-native-typography": "^1.4.1",
"zod": "^3.22.4",
"zustand": "^4.5.1"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@react-native-community/datetimepicker": "8.0.1",
"@react-native-community/slider": "4.5.2",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-controls": "^6.5.16",
"@storybook/addon-ondevice-actions": "^6.5.7",
"@storybook/addon-ondevice-backgrounds": "^6.5.7",
"@storybook/addon-ondevice-controls": "^6.5.7",
"@storybook/addon-ondevice-notes": "^6.5.7",
"@storybook/react-native": "^6.5.7",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react-native": "^12.4.1",
"@types/jest": "^29.5.10",
"@types/react": "~18.2.79",
"babel-loader": "^8.3.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-testing-library": "^6.2.0",
"fast-text-encoding": "^1.0.6",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-expo": "~51.0.1",
"jest-when": "^3.6.0",
"lint-staged": "^15.1.0",
"msw": "^1.3.3",
"msw-storybook-addon": "^1.10.0",
"react-dom": "^18.2.0",
"react-native-config": "^1.5.1",
"react-native-url-polyfill": "^2.0.0",
"ts-jest": "^29.1.1",
"typescript": "~5.3.3"
},
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,d.ts}": [
"prettier",
"eslint --fix"
]
}
}