-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.81 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.81 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "react-native-neat-date-picker",
"version": "1.6.1",
"description": "An easy-to-use date picker for React Native",
"main": "./src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --write \"./src/**/*.{js,jsx,mjs,cjs,ts,tsx,json}\"",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roto93/react-native-neat-date-picker.git"
},
"keywords": [
"react-native",
"date",
"datePicker",
"date-picker",
"date",
"picker",
"react",
"native"
],
"author": "roto93",
"contributors": [
{
"name": "diecodev",
"email": "diegoddiaz05@gmail.com",
"url": "https://diecodev.vercel.app"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/roto93/react-native-neat-date-picker/issues"
},
"homepage": "https://github.com/roto93/react-native-neat-date-picker#readme",
"devDependencies": {
"@types/react": "^19.0.7",
"@types/react-native": "^0.73.0",
"@types/react-native-vector-icons": "^6.4.18",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.5.1",
"eslint-plugin-react": "^7.37.4",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "3.5.3",
"typescript": "^5.8.3"
},
"dependencies": {
"react-native-modal": "14.0.0-rc.1",
"react-native-vector-icons": "^10.2.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}