-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.95 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.95 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
{
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
"name": "flipper-plugin-react-query-native-devtools",
"id": "flipper-plugin-react-query-native-devtools",
"description": "Inspect React Query cache with Flipper",
"title": "React Query Devtools",
"version": "4.1.3",
"main": "dist/bundle.js",
"flipperBundlerEntry": "src/index.tsx",
"author": "Bruno Galeotti",
"license": "MIT",
"keywords": [
"flipper-plugin"
],
"repository": "https://github.com/bgaleotti/react-query-native-devtools/",
"scripts": {
"build": "true",
"lint": "eslint --ignore-path .eslintignore './src/**/*.{js,ts,tsx}' --quiet",
"lint:fix": "eslint --fix --ignore-path .eslintignore './src/**/*.{ts,tsx}'",
"lint:fix:staged": "eslint --fix --ignore-path .eslintignore",
"release": "release-it",
"test": "true",
"prepack": "flipper-pkg lint && flipper-pkg bundle",
"pack": "flipper-pkg"
},
"dependencies": {
"flatted": "^3.2.4",
"lodash": "^4.17.21",
"nanoid": "^3.1.8"
},
"peerDependencies": {
"flipper-plugin": "*",
"antd": "*"
},
"devDependencies": {
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@release-it/conventional-changelog": "^3.3.0",
"@types/lodash": "^4.14.178",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"antd": "latest",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"flipper-pkg": "latest",
"flipper-plugin": "latest",
"husky": "^7.0.0",
"lint-staged": "^12.1.4",
"prettier": "^2.5.1",
"react-query": "^3.34.6",
"release-it": "^14.11.8",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"workspaces": {
"nohoist": [
"flatted",
"lodash",
"nanoid"
]
}
}