-
Notifications
You must be signed in to change notification settings - Fork 455
/
package.json
141 lines (141 loc) · 4 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@shoutem/ui",
"version": "8.1.0",
"description": "Styleable set of components for React Native applications",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"postinstall": "node ./scripts/add-native-deps",
"release": "npm publish --access public --tag latest",
"release-rc": "npm publish --access public --tag rc",
"test": "jest"
},
"dependencies": {
"@native-html/iframe-plugin": "2.6.1",
"@native-html/table-plugin": "5.3.1",
"@openspacelabs/react-native-zoomable-view": "2.0.4",
"@react-native-community/datetimepicker": "6.2.0",
"@shoutem/animation": "0.17.0",
"@shoutem/eslint-config-react": "~1.0.6",
"@shoutem/theme": "~0.14.0",
"auto-bind": "4.0.0",
"babel-plugin-transform-decorators-legacy": "1.3.5",
"buffer": "5.6.0",
"deprecated-react-native-prop-types": "2.3.0",
"events": "1.1.0",
"fs-extra": "7.0.1",
"html-entities": "1.3.1",
"htmlparser2": "3.10.1",
"lodash": "4.17.21",
"lottie-react-native": "6.7.0",
"prop-types": "15.8.1",
"qs": "6.9.3",
"react-native-device-info": "10.13.2",
"react-native-lightbox-v2": "0.9.0",
"react-native-linear-gradient": "2.8.3",
"react-native-modal": "13.0.1",
"react-native-render-html": "6.3.4",
"react-native-svg": "15.4.0",
"react-native-svg-transformer": "1.3.0",
"react-native-toast-message": "2.1.5",
"react-native-vimeo-iframe": "^1.2.1",
"react-native-web-refresh-control": "1.1.2",
"react-native-webview": "11.23.0",
"react-native-youtube-iframe": "2.2.2",
"react-native-actions-sheet": "0.9.3",
"stream": "0.0.2",
"tinycolor2": "1.4.1"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-native": ">=0.61.5",
"react-native-gesture-handler": "*",
"react-native-safe-area-context": "*"
},
"devDependencies": {
"@babel/core": "7.16.7",
"@babel/plugin-proposal-decorators": "7.16.7",
"@babel/register": "7.9.0",
"@shoutem/eslint-config-react-native": "~1.0.2",
"babel-eslint": "10.1.0",
"eslint": "6.8.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-react-native": "3.11.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"jest": "27.5.1",
"metro-react-native-babel-preset": "0.66.2",
"path": "0.12.7",
"prettier": "1.19.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.68.2",
"react-test-renderer": "17.0.2"
},
"nativeDependencies": [
"@react-native-community/datetimepicker",
"lottie-react-native",
"react-native-device-info",
"react-native-linear-gradient",
"react-native-photo-view",
"react-native-svg",
"react-native-webview"
],
"homepage": "http://shoutem.github.io/docs/ui-toolkit/introduction",
"bugs": {
"url": "https://github.com/shoutem/ui/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:shoutem/ui.git"
},
"license": "BSD-3-Clause",
"contributors": [
{
"email": "majaklajic@gmail.com",
"name": "majaklajic"
},
{
"email": "lucija.tatarevic@shoutem.com",
"name": "ltatarev"
},
{
"email": "slavko@shoutem.com",
"name": "sstimac"
},
{
"email": "tomislav.arambasic@shoutem.com",
"name": "tomislav-arambasic"
},
{
"email": "vlad@definitely-not-vlad.com",
"name": "Definitely-Not-Vlad"
}
],
"eslintConfig": {
"extends": "@shoutem/react-native",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
},
"prettier": {
"bracketSpacing": true,
"jsxBracketSameLine": false,
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"/node_modules/"
],
"transformIgnorePatterns": [
"!/node_modules/@shoutem"
]
}
}