-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.58 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
{
"name": "gotcha-fe",
"version": "0.1.0",
"private": true,
"homepage": "https://gotcha.it.com",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:capacitor": "NEXT_PUBLIC_BUILD_TARGET=capacitor next build",
"build:ios": "bash scripts/build-ios.sh",
"sync:ios": "npx cap sync ios",
"dev:ios": "([ -s \"$NVM_DIR/nvm.sh\" ] && . \"$NVM_DIR/nvm.sh\" || [ -s \"$HOME/.nvm/nvm.sh\" ] && . \"$HOME/.nvm/nvm.sh\" || true) && (command -v nvm >/dev/null 2>&1 && nvm use 24 || true) && CAP_DEV_SERVER=true npx cap sync ios && CAP_DEV_SERVER=true npx cap open ios",
"lint": "eslint src",
"lint:strict": "eslint src --max-warnings=0",
"lint:fix": "eslint src --fix",
"lint:staged": "lint-staged",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"prepare": "husky"
},
"dependencies": {
"@capacitor/app": "^8.0.1",
"@capacitor/browser": "^8.0.1",
"@capacitor/camera": "^8.0.1",
"@capacitor/core": "^8.1.0",
"@capacitor/geolocation": "^8.1.0",
"@capacitor/haptics": "^8.0.0",
"@capacitor/ios": "^8.1.0",
"@capacitor/keyboard": "^8.0.1",
"@capacitor/push-notifications": "^8.0.1",
"@capacitor/splash-screen": "^8.0.1",
"@capacitor/status-bar": "^8.0.1",
"@sentry/capacitor": "^4.0.0",
"@sentry/nextjs": "10.43.0",
"@tanstack/react-query": "^5.62.8",
"axios": "1.15.2",
"browser-image-compression": "^2.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.562.0",
"next": "^16.1.6",
"pretendard": "^1.3.9",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-kakao-maps-sdk": "^1.2.0",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.2"
},
"devDependencies": {
"@capacitor/cli": "^8.1.0",
"@eslint/eslintrc": "^3.3.3",
"@tanstack/react-query-devtools": "^5.91.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"postcss": "^8",
"prettier": "^3.7.4",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"browserslist": [
"Chrome >= 80",
"Safari >= 14",
"Firefox >= 80",
"Edge >= 80",
"iOS >= 14",
"not dead"
]
}