-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathpackage.json
103 lines (103 loc) · 2.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
{
"name": "@react-native-seoul/naver-login",
"version": "4.0.4",
"description": "React Native Module for Naver Login",
"postinstall": "dooboolab-welcome postinstall",
"main": "dist/index",
"types": "dist/index.d.ts",
"flow": "dist/index.flow.js",
"source": "src/index",
"scripts": {
"example": "yarn workspace example",
"typecheck": "tsc --noEmit",
"build": "rm -rf dist && tsc --project tsconfig.build.json && tsc --project ./plugin && flowgen dist/index.d.ts -o dist/index.flow.js",
"lint": "eslint",
"validate": "yarn lint && yarn typecheck",
"prepare": "husky",
"prepack": "yarn build"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crossplatformkorea/react-native-naver-login"
},
"homepage": "https://github.com/crossplatformkorea/react-native-naver-login",
"keywords": [
"react-native",
"naver",
"네아로",
"네이버",
"react-native-seoul",
"dooboolab",
"naver-login"
],
"author": "dooboolab, Jongwoo Moon, MJ Studio",
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"dooboolab-welcome": "^1.3.2"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^17.0.2",
"@react-native/eslint-config": "^0.73.1",
"@types/jest": "^29.5.5",
"@types/react": "^18.2.44",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.0.1",
"expo-module-scripts": "^3.0.7",
"flowgen": "^1.21.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"react": "18.2.0",
"react-native": "0.73.6",
"typescript": "5.1.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"src",
"dist",
"android",
"ios",
"cpp",
"app.plugin.js",
"plugin/build",
"*.podspec",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"packageManager": "[email protected]",
"workspaces": [
"example"
],
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
}
}