forked from indiespirit/react-native-chart-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.65 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
61
62
63
64
65
{
"name": "react-native-chart-kit",
"version": "3.2.0",
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.1.1",
"eslint-plugin-react-hooks": "^1.4.0",
"babel-polyfill": "^6.26.0",
"eslint-config-xo-react": "^0.19.0",
"eslint-plugin-react": "^7.12.4",
"expo": "32.0.1",
"jest-expo": "28.0.0",
"prop-types": "^15.6.2",
"react": "16.5.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
"react-native-scrollable-tab-view": "^0.10.0",
"react-native-flash-message": "^0.1.10",
"react-test-renderer": "16.7.0",
"xo": "^0.24.0"
},
"_main": "./node_modules/expo/AppEntry.js",
"main": "./index.js",
"scripts": {
"start": "expo start",
"eject": "expo eject",
"android": "expo start --android",
"ios": "expo start --ios",
"test": "jest"
},
"jest": {
"preset": "jest-expo"
},
"peerDependencies": {
"prop-types": "> 15.6.0",
"react": "> 16.7.0",
"react-native": ">= 0.50.0",
"react-native-svg": "> 9.6.2"
},
"dependencies": {
"lodash": "^4.17.11",
"paths-js": "^0.4.7",
"point-in-polygon": "^1.0.1"
},
"xo": {
"extends": "xo-react",
"parser": "babel-eslint",
"space": true,
"semicolon": false,
"prettier": true,
"rules": {
"camelcase": "off",
"capitalized-comments": "off",
"new-cap": "off",
"import/no-unassigned-import": "off",
"react/forbid-component-props": "off",
"react/prop-types": "off",
"react/no-this-in-sfc": "off",
"unicorn/filename-case": "off"
},
"envs": [
"node",
"browser"
]
}
}