-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.02 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.02 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
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
{
"name": "react-native-sortables",
"description": "Powerful Sortable Components for Flexible Content Reordering in React Native",
"version": "1.5.2",
"author": "Mateusz Łopaciński (https://github.com/MatiPl01)",
"bugs": "https://github.com/MatiPl01/react-native-sortables/issues",
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.7",
"@semantic-release/release-notes-generator": "^14.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^12.5.1",
"@types/react": "^19.0.0",
"@types/react-test-renderer": "^19.0.0",
"babel-plugin-react-require": "^4.0.3",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"lint-staged": "^15.5.0",
"madge": "^8.0.0",
"prettier": "^3.3.2",
"react": "19.0.0",
"react-native": "0.79.0",
"react-native-builder-bob": "0.39.0",
"react-native-gesture-handler": "2.25.0",
"react-native-reanimated": "patch:react-native-reanimated@npm%3A3.17.4#~/.yarn/patches/react-native-reanimated-npm-3.17.4-d7caed9b50.patch",
"react-test-renderer": "19.0.0",
"semantic-release": "^24.0.0",
"semantic-release-yarn": "^3.0.2",
"syncpack": "^12.3.3",
"typescript": "^5.8.2"
},
"files": [
"src",
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"homepage": "https://github.com/MatiPl01/react-native-sortables#readme",
"keywords": [
"draggable",
"draggable-flex",
"draggable-grid",
"flex",
"gesture-handler",
"gestures",
"grid",
"haptic-feedback",
"haptics",
"react-native",
"reanimated",
"reorder",
"sortable",
"sortable-flex",
"sortable-grid"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"bash -c tsc --noEmit"
]
},
"main": "dist/module/index",
"module": "dist/module/index",
"optionalDependencies": {
"react-native-haptic-feedback": ">=2.0.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": ">=2.0.0",
"react-native-reanimated": ">=3.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"react-native": "src/index",
"repository": "https://github.com/MatiPl01/react-native-sortables",
"scripts": {
"build": "yarn clean && bob build",
"circular-dependency-check": "yarn madge --extensions js,jsx,ts,tsx --circular src",
"clean": "../../scripts/clean.sh",
"format": "yarn format:code && yarn format:deps",
"format:code": "prettier --write . --ignore-unknown",
"format:deps": "syncpack format",
"lint": "eslint .",
"postpack": "rm ./README.md",
"prepack": "bob build && cp ../../README.md ./README.md",
"test": "jest",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"types": "dist/typescript/index.d.ts"
}