-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 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
{
"name": "react-native-gradient-list",
"version": "1.0.0",
"description": "Custom ScrollView and FlatList components which will render a gradient at the bottom as long as there is scrollable content",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .ts,.tsx"
},
"keywords": [
"react",
"react native",
"scrollview",
"flatlist",
"gradient"
],
"author": "Roberto Tatasciore <tatasciorecont@gmail.com> (https://github.com/phanghos)",
"license": "MIT",
"devDependencies": {
"@types/react": "^17.0.39",
"@types/react-native": "^0.66.16",
"eslint-config-taitasciore-react-native": "^1.0.0",
"metro-react-native-babel-preset": "^0.68.0",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-native": "^0.67.2",
"react-native-linear-gradient": "^2.5.6",
"react-native-reanimated": "^2.4.1",
"typescript": "^4.5.5"
},
"peerDependencies": {
"react": ">=16.8",
"react-native": ">=0.62",
"react-native-linear-gradient": "^2.5.6",
"react-native-reanimated": ">=2"
}
}