-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
80 lines (80 loc) · 2.57 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
{
"name": "querio",
"private": true,
"version": "1.2.0",
"description": "Missing DevTools network inspector for GraphQL and HTTP requests",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"play": "concurrently \"jiti ./playground/server/index.ts\" \"vite ./playground/client\"",
"release": "npm run build && changelogen --release && git push --follow-tags"
},
"dependencies": {
"@codemirror/commands": "^6.3.0",
"@codemirror/lang-html": "^6.4.6",
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-xml": "^6.0.2",
"@codemirror/language": "^6.9.1",
"@codemirror/legacy-modes": "^6.3.3",
"@codemirror/search": "^6.5.4",
"@codemirror/state": "^6.3.0",
"@codemirror/view": "^6.21.3",
"@extend-chrome/clipboard": "^2.0.0",
"@lezer/highlight": "^1.1.6",
"@prettier/plugin-xml": "^3.2.2",
"@radix-ui/colors": "^3.0.0",
"@unocss/reset": "^0.45.30",
"@vueuse/core": "^10.5.0",
"cm6-graphql": "^0.0.12",
"codemirror": "^6.0.1",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"http-status": "^1.6.2",
"prettier": "^2.8.8",
"radix-vue": "^1.0.1",
"splitpanes": "^3.1.5",
"ufo": "^1.1.2",
"uncrypto": "^0.1.3",
"vue": "^3.3.2",
"webext-bridge": "^5.0.5"
},
"devDependencies": {
"@antfu/eslint-config": "^0.27.0",
"@apollo/client": "^3.7.14",
"@apollo/server": "^4.7.1",
"@as-integrations/h3": "^1.1.5",
"@crxjs/vite-plugin": "2.0.0-beta.19",
"@iconify/utils": "^2.1.5",
"@julr/unocss-preset-forms": "^0.0.5",
"@types/apollo-upload-client": "^17.0.2",
"@types/har-format": "^1.2.10",
"@types/node": "^18.16.9",
"@types/prettier": "^2.7.2",
"@types/webextension-polyfill": "^0.10.4",
"@unocss/eslint-config": "^0.51.12",
"@unocss/transformer-directives": "^0.51.12",
"@unocss/transformer-variant-group": "^0.51.12",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/apollo-composable": "4.0.0-beta.4",
"apollo-upload-client": "^17.0.0",
"changelogen": "^0.5.5",
"concurrently": "^7.6.0",
"eslint": "^8.40.0",
"h3": "^1.6.5",
"jiti": "^1.18.2",
"ofetch": "^1.0.1",
"typescript": "^4.9.5",
"unocss": "^0.51.12",
"unocss-preset-radix": "^2.5.5",
"unocss-preset-scrollbar": "^0.2.1",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.22.12",
"vite": "^5.0.0",
"vite-svg-loader": "^3.6.0",
"vue-tsc": "^1.6.5",
"webextension-polyfill": "^0.10.0"
}
}