-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 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
{
"name": "react-native-recoil-flipper-client",
"version": "0.0.4-alpha.0",
"description": "A Flipper client for React Native meant to provide Recoil state information to a Flipper desktop client.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "npx tsc --declaration",
"lint": "eslint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kolohelios/react-native-recoil-flipper-client.git"
},
"keywords": [
"react-native",
"flipper",
"recoil",
"state"
],
"author": "Jon Edwards",
"license": "MIT",
"bugs": {
"url": "https://github.com/kolohelios/react-native-recoil-flipper-client/issues"
},
"homepage": "https://github.com/kolohelios/react-native-recoil-flipper-client#readme",
"devDependencies": {
"@react-native-community/eslint-config": "^3.0.0",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.16",
"eslint": "^7.32.0",
"jest": "^27.0.6",
"react-dom": "^17.0.1",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
},
"dependencies": {
"react": "^17.0.1",
"react-native": "^0.64.2",
"react-native-flipper": "^0.102.0",
"recoil": "^0.3.1"
},
"peerDependencies": {
"react-native-flipper": "^0.102.0"
}
}