-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.41 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
{
"name": "grpc-web-devtools",
"version": "1.0.0",
"main": "index.js",
"author": "IvanRodriCalleja <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"prepare": "panda codegen",
"dev:chrome": "cross-env BROWSER=chrome concurrently \"yarn dev:example\" \"yarn build:extension\" \"yarn launch:chrome\"",
"dev:firefox": "cross-env BROWSER=firefox concurrently \"yarn dev:example\" \"yarn build:extension\" \"yarn launch:firefox\"",
"build:chrome:pro": "cross-env BROWSER=chrome yarn build:extension",
"build:firefox:pro": "cross-env BROWSER=firefox yarn build:extension",
"prettier": "prettier --write '**/*.{js,jsx,css,html}'",
"launch:chrome": "node ./chrome/dev.js",
"launch:firefox": "node ./firefox/dev.js",
"tsc": "tsc",
"lint": "eslint src --ext .ts,.tsx --quiet --cache",
"test": "vitest",
"dev:example": "yarn --cwd \"example\" dev",
"build:extension": "node esbuild.js"
},
"dependencies": {
"@deanc/esbuild-plugin-postcss": "^1.0.2",
"@pandacss/dev": "^0.9.0",
"@tanstack/react-table": "^8.9.3",
"@tanstack/react-virtual": "3.0.0-beta.54",
"google-protobuf": "^3.21.2",
"grpc-web": "^1.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-resizable-panels": "^0.0.54",
"react18-json-view": "^0.1.0",
"use-debounce": "^9.0.4",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/chrome": "0.0.242",
"@types/google-protobuf": "^3.15.6",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/webextension-polyfill": "^0.10.1",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"child-process-promise": "^2.2.1",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"esbuild": "^0.18.18",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.3.1",
"jsdom": "^22.1.0",
"prettier": "^3.0.0",
"typescript": "5.1.6",
"vite": "4.4.7",
"vitest": "^0.34.1",
"web-ext": "7.6.2"
}
}