-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 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
{
"name": "@rose-hulman/react-native-dropdown-selector",
"version": "0.2.1",
"description": "A react native component for creating dropdown lists",
"main": "index.tsx",
"scripts": {
"build-dev": "npm pack",
"typecheck": "tsc --noEmit",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhventures/react-native-dropdown-selector.git"
},
"author": "Rose-Hulman Ventures",
"license": "MIT",
"bugs": {
"url": "https://github.com/rhventures/react-native-dropdown-selector/issues"
},
"homepage": "https://github.com/rhventures/react-native-dropdown-selector#readme",
"peerDependencies": {
"react": ">=18.2.0",
"react-native": ">=0.71.19"
},
"devDependencies": {
"@types/react": "^18.2.9",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-native": "^5.0.0",
"typescript": "^5.7.3"
},
"dependencies": {
"react-native-svg": "15.12.0"
},
"directories": {
"doc": "docs",
"example": "example"
},
"keywords": [
"react-native",
"dropdown"
]
}