-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "react-native-drax",
"version": "0.10.3",
"description": "A drag-and-drop system for React Native",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nuclearpasta/react-native-drax.git"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"lint": "yarn run eslint src",
"build": "yarn run tsc",
"prepublish": "yarn run build"
},
"author": "Joe Lafiosca <[email protected]>",
"license": "MIT",
"dependencies": {
"lodash.isequal": "^4.5.0",
"lodash.throttle": "^4.1.1",
"typesafe-actions": "^5.1.0"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.65.0",
"react-native-gesture-handler": ">=1.8.0"
},
"devDependencies": {
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.throttle": "^4.1.6",
"@types/node": "^14.14.43",
"@types/react-native": "^0.65.22",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.10.0",
"react": "^17.0.2",
"react-native": "^0.65.2",
"react-native-gesture-handler": "^1.8.0",
"typescript": "^4.7.3"
}
}