-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.26 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
{
"name": "@edgeandnode/graphiql-playground",
"version": "1.3.0",
"type": "commonjs",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"packageManager": "[email protected]",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./dist/style.css": "./dist/style.css"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/edgeandnode/graphiql-playground.git"
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc --declaration --emitDeclarationOnly",
"release": "pnpm build && pnpm publish",
"build:demo": "cross-env BUILD_DEMO=1 vite build",
"typecheck": "tsc --noEmit",
"lint": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint src/**/*.{ts,tsx}",
"format": "prettier --write ./src/**/*.{ts,tsx}",
"check": "pnpm typecheck && pnpm lint",
"test": "jest"
},
"dependencies": {
"@graphiql/react": "0.17.1",
"@graphiql/toolkit": "0.8.3",
"graphiql-explorer": "^0.9.0"
},
"devDependencies": {
"@edgeandnode/eslint-config": "^1.3.5",
"@jest/types": "^29.6.3",
"@types/codemirror": "^5.60.15",
"@types/jest": "^29.5.11",
"@types/node": "^18.19.3",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/rollup-plugin-auto-external": "^2.0.5",
"@vitejs/plugin-react": "~4.2.1",
"cross-env": "^7.0.3",
"esbuild-jest": "^0.5.0",
"eslint": "^8.56.0",
"eslint-plugin-testing-library": "^5.11.1",
"jest": "^29.7.0",
"postcss-nesting": "^11.3.0",
"prettier": "^3.1.1",
"rollup-plugin-auto-external": "^2.0.0",
"typescript": "^5.3.3",
"vite": "^4.5.1",
"wouter": "^2.12.1"
},
"peerDependencies": {
"@edgeandnode/gds": ">=3",
"@emotion/react": ">=11",
"graphql": "^16",
"react": ">=18",
"react-dom": ">=18",
"theme-ui": ">=0"
},
"pnpm": {
"overrides": {
"graphiql": "^16.6.0"
},
"peerDependencyRules": {
"allowedVersions": {
"@edgeandnode/gds": "3.0.0-global-header-1701913779061-6ea902d",
"react": "18",
"react-dom": "18",
"graphiql": "^16"
}
}
}
}