forked from wundergraph/cosmo
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.74 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.74 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
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
{
"name": "@wundergraph/playground",
"version": "0.10.0",
"description": "Cosmo Playground built on top of graphiql",
"author": {
"name": "WunderGraph Maintainers",
"email": "info@wundergraph.com"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"repository": {
"url": "https://github.com/wundergraph/cosmo"
},
"type": "module",
"main": "dist/index.umd.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./styles": "./dist/style.css"
},
"files": [
"/dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"copy-html": "cp dist/index.html ../router/internal/graphiql/graphiql.html",
"build:router": "VITE_SINGLE_FILE_OUTPUT=true pnpm build && pnpm copy-html",
"format": "prettier -w -c ."
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"axios": "^1.12.2",
"change-case": "^5.2.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"copy-to-clipboard": "^3.3.3",
"crypto-js": "^4.2.0",
"dagre": "^0.8.5",
"graphql": "^16.9.0",
"graphql-ws": "^5.16.0",
"lodash": "^4.17.21",
"monaco-editor": "^0.45.0",
"prettier": "^3.1.0",
"prism-react-renderer": "^2.3.0",
"prismjs": "^1.30.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^4.12.0",
"react-move-hook": "^0.1.2",
"react-resizable-panels": "^1.0.5",
"reactflow": "^11.10.1",
"use-debounce": "^10.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/crypto-js": "^4.2.2",
"@types/dagre": "^0.7.52",
"@types/lodash": "^4.17.12",
"@types/node": "^20.10.0",
"@types/prismjs": "^1.26.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.38",
"tailwind-merge": "^2.0.0",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.15",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.5.2",
"vite": "^6.4.1",
"vite-plugin-dts": "4.3.0",
"vite-plugin-html": "^3.2.2",
"vite-plugin-singlefile": "^2.2.0"
}
}