-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 3.57 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
108
109
110
{
"name": "dnd-119-frontend",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"web:build": "expo export -p web",
"web:start": "serve dist --single",
"test:watch": "jest --watchAll",
"lint": "expo lint",
"lint:css": "stylelint --ignore-path .gitignore '**/*.(ts|tsx)'",
"lint:css:fix": "stylelint --ignore-path .gitignore '**/*.(ts|tsx)' --fix",
"postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@emotion/native": "^11.11.0",
"@emotion/react": "^11.11.4",
"@expo/vector-icons": "^14.0.2",
"@gorhom/bottom-sheet": "^4",
"@hookform/resolvers": "^3.9.0",
"@react-navigation/native": "^6.0.2",
"@tanstack/react-query": "^5.51.11",
"axios": "^1.7.7",
"chromatic": "^11.5.5",
"dayjs": "^1.11.13",
"effect": "^3.5.6",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.0.0",
"expo": "~51.0.21",
"expo-checkbox": "~3.0.0",
"expo-constants": "~16.0.2",
"expo-file-system": "^17.0.1",
"expo-font": "~12.0.9",
"expo-image-picker": "~15.0.7",
"expo-linear-gradient": "~13.0.2",
"expo-linking": "~6.3.1",
"expo-router": "~3.5.18",
"expo-secure-store": "~13.0.2",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.7",
"expo-web-browser": "~13.0.3",
"husky": "^9.0.11",
"mime": "^4.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.53.0",
"react-native": "0.74.3",
"react-native-gesture-handler": "~2.16.1",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-svg": "15.2.0",
"react-native-web": "~0.19.10",
"react-native-webview": "13.8.6",
"ts-pattern": "^5.2.0",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.7.0",
"@react-native-async-storage/async-storage": "1.24.0",
"@react-native-community/datetimepicker": "8.2.0",
"@react-native-community/slider": "4.5.2",
"@storybook/addon-actions": "^7.6.18",
"@storybook/addon-controls": "^7.6.18",
"@storybook/addon-essentials": "^7.6.18",
"@storybook/addon-links": "^7.6.18",
"@storybook/addon-react-native-web": "^0.0.23",
"@storybook/react": "^7.6.18",
"@storybook/react-native": "^7.6.18",
"@storybook/react-webpack5": "^7.6.18",
"@tanstack/eslint-plugin-query": "^5.51.12",
"@types/react": "~18.2.45",
"babel-loader": "8.3.0",
"eslint": "^8.57.0",
"eslint-config-expo": "^7.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-storybook": "^0.8.0",
"globals": "^15.8.0",
"lint-staged": "^15.2.7",
"postcss-styled-syntax": "^0.6.4",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"serve": "^14.2.3",
"storybook": "^7.6.18",
"stylelint": "^16.8.1",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"typescript": "~5.3.3",
"typescript-eslint": "^7.16.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"private": true,
"packageManager": "yarn@4.3.1"
}