-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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
{
"name": "react-native-modal-datepicker",
"version": "2.0.0",
"description": "A modal based datepicker for React Native with support for single dates, multiple dates and date ranges (start date – end date).",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "storybook start -p 7007",
"flow": "flow --show-all-errors"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/gudog/react-native-modal-datepicker.git"
},
"keywords": [
"react-native",
"datepicker",
"react",
"calendar"
],
"author": "Javier Cuevas",
"license": "ISC",
"bugs": {
"url": "https://github.com/gudog/react-native-modal-datepicker/issues"
},
"homepage": "https://github.com/gudog/react-native-modal-datepicker#readme",
"dependencies": {
"moment": "^2.19.1",
"ramda": "^0.24.1",
"react-moment-proptypes": "^1.2.0",
"react-transform-hmr": "^1.0.4",
"styled-components": "^3.4.9"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@storybook/react-native": "^3.4.11",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"flow-bin": "^0.49.1",
"metro-react-native-babel-preset": "0.45.3",
"prettier": "^1.4.4",
"react": "16.5.0",
"react-dom": "16.5.0",
"react-native": "^0.57.0",
"react-native-console-time-polyfill": "^0.0.6"
},
"peerDependencies": {
"react": "^16.4.1",
"react-native": "^0.56.0"
}
}