-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
102 lines (102 loc) · 3.06 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "graphql-network-inspector",
"version": "2.22.0",
"private": true,
"scripts": {
"start": "craco start",
"build": "INLINE_RUNTIME_CHUNK=false craco build",
"bundle": "yarn bundle:chrome && yarn bundle:firefox",
"bundle:chrome": "yarn build && node ./scripts/set-chrome-settings.js && bestzip build-chrome.zip build/*",
"bundle:firefox": "yarn build && node ./scripts/set-firefox-settings.js && cd build && bestzip ../build-firefox.zip *",
"postbuild": "node ./scripts/set-manifest-version.js && NODE_ENV=production node ./scripts/set-manifest-content-script.js",
"test": "craco test",
"eject": "react-scripts eject",
"lint": "eslint --max-warnings=0 src/**/*.* public/**/*.js",
"check-types": "tsc --noEmit"
},
"dependencies": {
"@headlessui/react": "^1.6.0",
"@notdutzi/react-json-view": "^1.21.8",
"@testing-library/react-hooks": "^8.0.1",
"classnames": "^2.3.1",
"copy-to-clipboard": "^3.3.1",
"dotenv": "^16.3.1",
"eventemitter3": "^5.0.1",
"graphql": "^16.0.1",
"graphql-tag": "^2.11.0",
"highlight.js": "^11.5.0",
"mark.js": "^8.11.1",
"mergeby": "^2.0.1",
"pretty-bytes": "^5.6.0",
"pretty-ms": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-split-pane": "^0.1.92",
"react-table": "^7.5.0",
"react-virtual": "^2.10.4",
"regex-parser": "^2.2.11",
"tailwind-merge": "^1.10.0",
"ts-debounce": "^4.0.0",
"uniqid": "^5.4.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"@craco/craco": "^6.4.3",
"@tailwindcss/forms": "^0.5.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^12.1.2",
"@types/chrome": "^0.0.262",
"@types/dedent": "^0.7.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^26.0.24",
"@types/mark.js": "^8.11.7",
"@types/prettier": "^2.6.0",
"@types/react": "^17.0.35",
"@types/react-dom": "^17.0.11",
"@types/react-table": "^7.0.22",
"@types/uniqid": "^5.3.2",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"autoprefixer": "^9",
"bestzip": "^2.2.0",
"copy-webpack-plugin": "^6.4.1",
"dedent": "^0.7.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"react-scripts": "^5.0.0",
"tailwindcss": "^3.0.23",
"typescript": "^4.0.3",
"util": "^0.12.5",
"utility-types": "^3.11.0",
"web-streams-polyfill": "^4.0.0"
},
"_resolutions_comment_": "https://stackoverflow.com/a/71855781/2573621",
"resolutions": {
"@types/react": "17.0.35",
"@types/react-dom": "17.0.11"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
},
"packageManager": "[email protected]"
}