-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.27 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.27 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
{
"name": "draggableview",
"version": "0.0.4",
"description": "A draggable view for React Native",
"author": "Vincent de Lafontaine",
"private": false,
"scripts": {
"lint": "tslint --config tslint.json --project tsconfig.json",
"prettier": "prettier --write './src/**/*'",
"tsc": "tsc"
},
"main": "dist/DraggableView.js",
"repository": {
"type": "git",
"url": "https://github.com/AppAndFlow/react-native-draggableview"
},
"keywords": [
"react-native",
"appandflow",
"react-native draggableView",
"draggableView",
"expo",
"draggable View"
],
"license": "MIT",
"files": [
"dist/DraggableView.js",
"dist/DraggableView.d.ts"
],
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "*"
},
"dependencies": {
"@appandflow/touchable": "2.0.0"
},
"devDependencies": {
"expo": "^27.0.0",
"react": "16.3.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-27.0.0.tar.gz",
"@types/expo": "^27.0.6",
"@types/react": "^16.3.17",
"@types/react-native": "^0.55.19",
"prettier": "^1.13.5",
"react-native-typescript-transformer": "^1.2.10",
"tslint": "^5.10.0",
"tslint-react": "^3.6.0",
"typescript": "^2.9.2"
}
}