This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.92 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
66
67
68
69
70
{
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
"name": "flipper-plugin-react-native-mmkv-storage",
"description": "Developer tools for React Native MMKV Storage",
"author": {
"email": "[email protected]",
"name": "Pham Ngoc Thach"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnthach95/flipper-plugin-react-native-mmkv-storage.git"
},
"id": "react-native-mmkv-storage",
"version": "1.3.1",
"pluginType": "client",
"main": "dist/bundle.js",
"flipperBundlerEntry": "src/index.tsx",
"license": "MIT",
"keywords": [
"flipper-plugin",
"mmkv",
"react-native-mmkv-storage"
],
"icon": "briefcase",
"title": "RN MMKV Storage",
"scripts": {
"lint": "flipper-pkg lint",
"prepack": "flipper-pkg lint && flipper-pkg bundle",
"build": "flipper-pkg bundle",
"watch": "flipper-pkg bundle --watch",
"test": "jest --no-watchman"
},
"peerDependencies": {
"@emotion/styled": "latest",
"antd": "latest",
"flipper-plugin": "^0.164.0",
"react": "<18",
"react-dom": "latest"
},
"devDependencies": {
"@babel/preset-react": "latest",
"@babel/preset-typescript": "latest",
"@emotion/styled": "latest",
"@testing-library/react": "latest",
"@types/jest": "latest",
"@types/react": "<18",
"@types/react-dom": "<18",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"antd": "latest",
"eslint": "7.32.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"flipper-pkg": "latest",
"flipper-plugin": "^0.164.0",
"jest": "latest",
"jest-mock-console": "latest",
"prettier": "^2.7.1",
"react": "<18",
"react-dom": "latest",
"typescript": "latest"
},
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"<rootDir>/jest-setup.ts"
]
}
}