-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
65 lines (65 loc) · 1.84 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-seoul/masonry-list",
"version": "1.4.2",
"description": "React Native Masonry List for Pinterest like UI implemented just like the [FlatList].",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"postinstall": "npx dooboolab-welcome postinstall",
"scripts": {
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"build": "rm -rf ./lib && tsc && flowgen lib/index.d.ts -o lib/index.js.flow",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyochan/react-native-masonry-list.git"
},
"keywords": [
"masonry",
"react-native",
"masonry-list",
"pinterest",
"flatlist"
],
"author": "hyochan",
"license": "MIT",
"bugs": {
"url": "https://github.com/hyochan/react-native-masonry-list/issues"
},
"homepage": "https://github.com/hyochan/react-native-masonry-list#readme",
"dependencies": {
"dooboolab-welcome": "^1.3.2"
},
"peerDependencies": {
"expo": "*",
"react": ">=16.9",
"react-native": ">=0.58"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@dooboo/eslint-config-react-native": "^1.0.3",
"@testing-library/jest-native": "^5.0.0",
"@testing-library/react-native": "^11.2.0",
"@types/jest": "^29.1.2",
"@types/react": "~18.0.0",
"@types/react-native": "~0.69.1",
"@types/react-dom": "^18.0.6",
"@types/react-test-renderer": "^18.0.0",
"eslint": "^8.25.0",
"eslint-plugin-ft-flow": "^2.0.1",
"flowgen": "^1.20.1",
"jest": "^29.1.2",
"jest-expo": "^46.0.1",
"metro-react-native-babel-preset": "^0.73.1",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-native": "^0.69",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"publishConfig": {
"access": "public"
}
}