-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
220 lines (220 loc) · 10.2 KB
/
package.json
File metadata and controls
220 lines (220 loc) · 10.2 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
{
"name": "@lemon/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"clean:cache": "(rm -rf ./node_modules/.vite ./node_modules/.cache || true) && (rm -rf ./.nx || true)",
"prepare": "husky",
"lint": "npx nx run-many --target=lint",
"lint:fix": "npx nx run-many --target=lint --fix",
"prettier": "prettier --config ./.prettierrc --write \"**/*.{js,jsx,ts,json,tsx,scss,css,html}\"",
"prettier:staged": "prettier --config ./.prettierrc --write $(git diff --name-only --cached --diff-filter=AM | egrep '^(.*).(.ts*|.js*|.html|.json|.css|.scss)$')",
"build:all:dev": "npx nx run-many --target=build --configuration=dev --all",
"build:all:prod": "npx nx run-many --target=build --configuration=prod --all",
"!web": "------------- web scripts -------------",
"web:start": "yarn clean:cache && npx nx serve web --port 5003",
"web:build:dev": "yarn clean:cache && npx nx build --configuration=dev web",
"web:build:prod": "yarn clean:cache && npx nx build --configuration=prod web",
"web:deploy:dev": "(rm -rf ./dist/apps/web || true) && yarn web:build:dev && ./scripts/deploy-web.sh dev",
"web:deploy:prod": "(rm -rf ./dist/apps/web || true) && yarn web:build:prod && ./scripts/deploy-web.sh prod",
"web:docker:build": "yarn clean:cache && docker build -t eurekakit-web:prod -f docker/web/Dockerfile .",
"web:docker:deploy": "./scripts/deploy-web-docker.sh",
"!admin": "------------- admin scripts -------------",
"admin:start": "yarn clean:cache && npx nx serve admin --port 5004",
"admin:build:dev": "yarn clean:cache && npx nx build --configuration=dev admin",
"admin:build:prod": "yarn clean:cache && npx nx build --configuration=prod admin",
"admin:deploy:dev": "(rm -rf ./dist/apps/admin || true) && yarn admin:build:dev && ./scripts/deploy-admin.sh dev",
"admin:deploy:prod": "(rm -rf ./dist/apps/admin || true) && yarn admin:build:prod && ./scripts/deploy-admin.sh prod",
"!mobile": "------------- mobile scripts -------------",
"mobile:env:local": "node apps/mobile/src/scripts/set-environment.js local",
"mobile:env:dev": "node apps/mobile/src/scripts/set-environment.js dev",
"mobile:env:prod": "node apps/mobile/src/scripts/set-environment.js prod",
"mobile:sync": "npx nx sync-deps mobile",
"mobile:start": "npx nx start mobile --reset-cache",
"mobile:ios": "npx nx run-ios mobile --simulator=\"iPhone 16 Pro\" --scheme \"EurekaKit\"",
"mobile:ios:device": "npx nx run-ios mobile --device --scheme \"EurekaKit\"",
"mobile:ios:release": "npx nx build-ios mobile --mode=Release",
"mobile:pod": "npx nx pod-install mobile",
"mobile:android": "npx nx run-android mobile",
"mobile:android:clean": "cd apps/mobile/android && (rm -rf ./app/build || true) && ./gradlew clean && cd ../../../",
"mobile:android:release:aab": "yarn mobile:clean:android && yarn mobile:env:prod && npx nx build-android mobile",
"mobile:android:release:apk": "yarn mobile:clean:android && npx nx build-android-apk mobile",
"!landing": "------------- landing scripts -------------",
"landing:start": "yarn clean:cache && npx nx serve landing --port 5005",
"landing:build:prod": "yarn clean:cache && npx nx build --configuration=prod landing",
"landing:deploy:prod": "(rm -rf ./dist/apps/landing || true) && yarn landing:build:prod && ./scripts/deploy-landing.sh prod"
},
"private": true,
"dependencies": {
"@hookform/resolvers": "^5.0.1",
"@invertase/react-native-apple-authentication": "^2.4.1",
"@lemoncloud/lemon-web-core": "^1.2.6",
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-radio-group": "^1.2.4",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.8",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.6",
"@react-native-async-storage/async-storage": "^2.1.2",
"@react-native-camera-roll/camera-roll": "^7.10.0",
"@react-native-community/netinfo": "^11.4.1",
"@react-native-community/push-notification-ios": "^1.11.0",
"@react-native-google-signin/google-signin": "^12.2.1",
"@react-native-seoul/kakao-login": "^5.4.1",
"@react-native-seoul/naver-login": "^4.0.1",
"@react-navigation/native": "^6.1.18",
"@react-navigation/stack": "^6.4.1",
"@tanstack/react-query": "^5.74.3",
"@tanstack/react-table": "^8.21.2",
"axios": "^1.7.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"i18next": "^24.2.3",
"i18next-browser-languagedetector": "^8.0.3",
"i18next-xhr-backend": "^3.2.2",
"lodash": "^4.17.21",
"lucide-react": "^0.465.0",
"moment": "^2.30.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "^4.1.2",
"react-helmet-async": "^2.0.5",
"react-hook-form": "7.56.1",
"react-i18next": "^15.4.1",
"react-native": "~0.76.3",
"react-native-bootsplash": "^6.3.4",
"react-native-circular-progress": "^1.4.1",
"react-native-device-info": "^14.0.4",
"react-native-gesture-handler": "^2.25.0",
"react-native-haptic-feedback": "^2.3.3",
"react-native-image-crop-picker": "^0.42.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-localize": "^3.4.1",
"react-native-modal": "^14.0.0-rc.1",
"react-native-reanimated": "^3.17.3",
"react-native-restart": "^0.0.27",
"react-native-safe-area-context": "^5.3.0",
"react-native-screens": "^4.10.0",
"react-native-send-intent": "^1.3.0",
"react-native-share": "^12.0.9",
"react-native-status-bar-height": "^2.6.0",
"react-native-toast-message": "^2.2.1",
"react-native-uuid": "^2.0.3",
"react-native-vector-icons": "^10.2.0",
"react-native-version-check": "^3.4.7",
"react-native-webview": "^13.13.5",
"react-router-dom": "^7.5.0",
"recharts": "^2.14.1",
"rn-fetch-blob": "^0.12.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.2",
"zustand": "^5.0.2",
"zustand-persist": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.8.0",
"@faker-js/faker": "^9.8.0",
"@hookform/devtools": "^4.4.0",
"@lemoncloud/codes-backend-api": "^0.25.214",
"@lemoncloud/lemon-boards-api": "^2.25.109",
"@lemoncloud/lemon-uploads-api": "^0.24.802",
"@lemoncloud/pets-socials-api": "^0.25.425",
"@mswjs/data": "^0.16.2",
"@nx/eslint": "21.1.0",
"@nx/eslint-plugin": "21.1.0",
"@nx/jest": "21.1.0",
"@nx/js": "21.1.0",
"@nx/react": "21.1.0",
"@nx/react-native": "21.1.0",
"@nx/rollup": "21.1.0",
"@nx/vite": "21.1.0",
"@nx/web": "21.1.0",
"@nx/workspace": "21.1.0",
"@react-native-community/cli": "~15.0.1",
"@react-native-community/cli-platform-android": "~15.0.1",
"@react-native-community/cli-platform-ios": "~15.0.1",
"@react-native/babel-preset": "~0.76.3",
"@react-native/metro-config": "~0.76.3",
"@swc-node/register": "~1.9.1",
"@swc/cli": "~0.6.0",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@tanstack/react-query-devtools": "^5.74.3",
"@testing-library/jest-native": "~5.4.3",
"@testing-library/react": "16.1.0",
"@testing-library/react-native": "~12.9.0",
"@types/i18next": "^13.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.0.0",
"@types/react": "~18.3.12",
"@types/react-dom": "~18.3.1",
"@types/react-i18next": "^8.1.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.3.1",
"autoprefixer": "10.4.13",
"babel-jest": "^29.7.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"i18next-parser": "^9.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-react-native": "18.0.0",
"jiti": "2.4.2",
"jsdom": "~22.1.0",
"msw": "^2.7.3",
"nx": "21.1.0",
"postcss": "8.4.38",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"react-native-svg": "~15.8.0",
"react-native-svg-transformer": "~1.5.0",
"react-native-svg-web": "~1.0.9",
"react-native-web": "~0.19.13",
"react-test-renderer": "~18.3.1",
"rollup-plugin-visualizer": "^6.0.1",
"tailwindcss": "3.4.3",
"terser": "^5.37.0",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typescript": "5.7.3",
"typescript-eslint": "^8.0.0",
"vite": "6.3.5",
"vite-plugin-dts": "4.5.4",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^1.3.1"
},
"msw": {
"workerDirectory": [
"apps/web/public"
]
}
}