-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 3.49 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
{
"description": "React Native Kakao SDK",
"private": true,
"workspaces": [
"example",
"docs",
"packages/*"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mym0404/react-native-kakao.git"
},
"author": "MJ Studio <[email protected]> (https://github.com/mym0404)",
"homepage": "https://rnkakao.dev",
"scripts": {
"example": "yarn workspace kakao-example",
"test": "jest",
"typecheck": "tsc --noEmit",
"t": "yarn lefthook run check",
"lint": "yarn t",
"format": "yarn lefthook run format",
"clean": "lerna run clean",
"build": "lerna run prepack && yarn web:unlink-declarations",
"bump": "./script/version.sh",
"bump:prerelease": "./script/version-prerelease.sh",
"release": "./script/publish.sh",
"android": "yarn example android",
"ios": "yarn example ios",
"web": "yarn example web",
"dev": "yarn watchman-refresh && yarn example start",
"gen:android": "yarn example prebuild:android",
"gen:android:clean": "yes | yarn example prebuild:android:clean",
"gen:ios": "yarn example prebuild:ios",
"gen:ios:clean": "yes | yarn example prebuild:ios:clean",
"gen:clean": "yarn example prebuild:clean",
"studio": "studio $(pwd)/example/android",
"xcode": "open $(pwd)/example/ios/KakaoExample.xcworkspace",
"old:pod": "script/arch-convert.sh false true",
"new:pod": "script/arch-convert.sh true true",
"old": "script/arch-convert.sh false false",
"new": "script/arch-convert.sh true false",
"old:clean": "script/arch-convert.sh true false true",
"new:clean": "script/arch-convert.sh true false true",
"codegen:android": "cd example/android && ./gradlew generateCodegenArtifactsFromSchema",
"codegen:ios": "yarn react-native codegen --platform ios --path example --outputPath example/ios",
"codegen": "yarn codegen:android && yarn codegen:ios",
"watchman-refresh": "watchman watch-del $(pwd) ; watchman watch-project $(pwd)",
"ci:android:build:old": "script/ci-android-build.sh",
"ci:android:build:new": "script/ci-android-build.sh",
"ci:ios:build:old": "script/ci-ios-build.sh",
"ci:ios:build:new": "script/ci-ios-build.sh",
"web:path:src": "zx script/web-module-path-util.mjs --convert=src",
"web:path:module": "zx script/web-module-path-util.mjs --convert=module",
"web:path:check": "zx script/web-module-path-util.mjs --check",
"web:unlink-declarations": "zx script/remove-web-declaration-files.mjs"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@lerna-lite/cli": "^3.3.3",
"@lerna-lite/publish": "^3.3.3",
"@lerna-lite/run": "^3.3.3",
"@mj-studio/eslint-config-react": "1.0.7",
"@react-native/eslint-config": "0.74.81",
"@types/fs-extra": "^11",
"@types/jest": "^29.5.5",
"@types/react": "^18.2.44",
"commitlint": "^17.0.2",
"del-cli": "^5.1.0",
"eslint": "8.57.0",
"eslint-plugin-jest": "^28.2.0",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lefthook": "^1.6.10",
"prettier": "3.2.5",
"react": "18.2.0",
"react-native": "0.74.1",
"react-native-builder-bob": "^0.20.0",
"turbo": "1.13.3",
"typescript": "5.3.3",
"zx": "^8.0.2"
},
"resolutions": {
"@types/react": "^18.2.44"
},
"packageManager": "[email protected]",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}