This repository has been archived by the owner on Jan 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.02 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
{
"name": "@0610studio/rn-gallery",
"version": "0.0.8",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --ext .tsx --ext .ts src/",
"format": "prettier --check ./src",
"start": "cd Example && react-native start",
"android": "cd Example && react-native run-android",
"ios": "cd Example && react-native run-ios",
"build:tsc": "rm -rf dist && rm -rf Example/dist && tsc && cp -R src/assets dist/assets && cp -R dist Example/dist",
"publish:npm": "npm publish --access public",
"clean": "rm -rf dist && rm -rf Example/dist && rm -rf Example/ios/Pods && rm -rf Example/ios/Podfile.lock && rm -rf Example/ios/build && rm -rf Example/android/app/build && rm -rf node_modules && rm -rf Example/node_modules && rm -rf yarn.lock && rm -rf Example/yarn.lock",
"example:install": "cd Example && yarn install && cd ios && pod install"
},
"peerDependencies": {
"react-native-gesture-handler": ">=2.17.1",
"@react-native-camera-roll/camera-roll": ">=7.8.0",
"react": ">=18.0.0",
"react-native": ">=0.70.0"
},
"devDependencies": {
"react-native-gesture-handler": "^2.17.1",
"@react-native-camera-roll/camera-roll": "^7.8.0",
"@react-native/babel-preset": "*",
"@react-native/metro-config": "*",
"@react-native/typescript-config": "*",
"@types/react": "*",
"@types/react-native": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"babel-plugin-module-resolver": "5.0.0",
"eslint": "6.8.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.1",
"husky": "4.2.3",
"lint-staged": "10.0.9",
"prettier": "2.0.2",
"react": "18.2.0",
"react-native": "0.73.8",
"typescript": "5.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0610studio/rn-gallery"
},
"author": "KimJeonghun91",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}