This repository was archived by the owner on Nov 28, 2024. It is now read-only.
forked from chakrahq/react-native-side-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.58 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.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
{
"name": "@rexovolt/react-native-side-menu",
"version": "2.0.0",
"description": "A simple customizable React Native component to create side menus.",
"main": "build/index.js",
"scripts": {
"build": "tsc || babel build/index.js build/styles.js -d build",
"prepublish": "tsc || babel build/index.js build/styles.js -d build"
},
"repository": {
"type": "git",
"url": "git@github.com:rexovolt/react-native-side-menu.git"
},
"keywords": [
"react-native",
"react-component",
"ios",
"android",
"crossplat",
"sidebar"
],
"author": "Rexogamer <beartechtalks@gmail.com> (https://github.com/rexogamer)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rexovolt/react-native-side-menu/issues"
},
"homepage": "https://github.com/rexovolt/react-native-side-menu",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.17.8",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-transform-react-jsx": "^7.17.3",
"@babel/preset-env": "^7.16.11",
"@react-native/babel-preset": "^0.74.0",
"@react-native/typescript-config": "^0.74.0",
"@types/jest": "^29.5.10",
"@types/react": "^18.2.39",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"react": "^18.2.0",
"react-native": "^0.72.7",
"typescript": "^5.3.2"
},
"files": [
"build"
]
}