-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2.12 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
{
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
"name": "flipper-plugin-reselect-debugger",
"description": "Reselect Debugging Tools for React Native and Flipper",
"repository": {
"url": "https://github.com/vlanemcev/flipper-plugin-reselect-debugger",
"type": "git"
},
"homepage": "https://github.com/vlanemcev/flipper-plugin-reselect-debugger",
"bugs": "https://github.com/vlanemcev/flipper-plugin-reselect-debugger/issues",
"author": "Vladyslav Niemtsev <frontend.vlanemcev@gmail.com> (https://github.com/vlanemcev)",
"id": "reselect-debugger",
"version": "1.0.9",
"pluginType": "client",
"main": "dist/bundle.js",
"flipperBundlerEntry": "src/index.tsx",
"license": "MIT",
"keywords": [
"flipper-plugin",
"reselect",
"reselect-debugger",
"reselect-devtools",
"reselect-tools"
],
"icon": "apps",
"title": "Reselect Debugger",
"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",
"eslint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"peerDependencies": {
"antd": "latest",
"flipper-plugin": "^0.95.0"
},
"devDependencies": {
"@babel/preset-react": "latest",
"@babel/preset-typescript": "latest",
"@testing-library/react": "latest",
"@types/cytoscape": "^3.14.15",
"@types/jest": "latest",
"@types/lodash.isempty": "^4.4.6",
"@types/react": "latest",
"@types/react-dom": "latest",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"antd": "latest",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"flipper-pkg": "latest",
"flipper-plugin": "latest",
"jest": "latest",
"prettier": "^2.3.2",
"typescript": "latest"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"classnames": "^2.3.1",
"cytoscape": "^3.19.0",
"cytoscape-dagre": "^2.3.2",
"lodash.isempty": "^4.4.0"
}
}