-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.09 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 4.09 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@neo4j/graphql-toolbox",
"private": true,
"version": "1.0.0",
"description": "Developer UI For Neo4j GraphQL",
"exports": "./dist/main.js",
"main": "./dist/main.js",
"type": "module",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*.ts",
"dist/**/*.ts.map",
"dist/**/*.js",
"dist/**/*.js.map"
],
"keywords": [
"neo4j",
"graphql",
"server"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/neo4j/graphql-toolbox/issues"
},
"homepage": "https://github.com/neo4j/graphql-toolbox/tree/dev/packages/graphql",
"neo4jDesktop": {
"apiVersion": "^1.4.0",
"permissions": [
"allGraphs"
]
},
"scripts": {
"build": "cross-env NODE_ENV=production vite build",
"dev": "cross-env NODE_ENV=development vite",
"dev:https": "cross-env NODE_ENV=development vite --config vite.https.config.ts",
"preview": "cross-env NODE_ENV=production vite preview",
"test": "cross-env NODE_ENV=test playwright test",
"test:debug": "cross-env NODE_ENV=test playwright test --headed --project=chromium",
"test:inspector-mode": "cross-env NODE_ENV=test PWDEBUG=1 playwright test --project=chromium",
"test:unit": "cross-env NODE_ENV=test vitest src",
"lint": "eslint src/"
},
"author": "Neo4j",
"dependencies": {
"@codemirror/autocomplete": "6.20.1",
"@codemirror/commands": "6.10.2",
"@codemirror/lang-javascript": "6.2.5",
"@codemirror/language": "6.12.2",
"@codemirror/lint": "6.9.5",
"@codemirror/search": "6.6.0",
"@codemirror/state": "6.5.4",
"@codemirror/view": "6.39.16",
"@dnd-kit/core": "6.3.1",
"@dnd-kit/modifiers": "9.0.0",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@graphiql/plugin-doc-explorer": "^0.0.1",
"@graphiql/react": "0.32.1",
"@graphiql/toolkit": "0.11.3",
"@mjfwebb/thememirror": "2.0.2",
"@neo4j-ndl/base": "4.9.5",
"@neo4j-ndl/react": "4.9.14",
"@neo4j/graphql": "7.4.3",
"@neo4j/introspector": "5.0.1",
"@tanstack/react-table": "8.21.3",
"classnames": "2.5.1",
"cm6-graphql": "0.2.1",
"codemirror": "6.0.2",
"graphiql-explorer": "0.9.0",
"graphql": "16.13.1",
"graphql-query-complexity": "1.1.0",
"neo4j-driver": "6.0.1",
"prettier": "3.8.1",
"process": "0.11.10",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-use": "17.6.0",
"tailwindcss": "4.2.1",
"zustand": "5.0.11"
},
"devDependencies": {
"@eslint/js": "9.39.3",
"@playwright/test": "1.58.2",
"@stylistic/eslint-plugin": "5.9.0",
"@tailwindcss/vite": "4.2.1",
"@types/codemirror": "5.60.17",
"@types/node": "24.11.2",
"@types/randomstring": "1.3.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"@vitejs/plugin-basic-ssl": "2.1.4",
"@vitejs/plugin-react": "5.1.4",
"cross-env": "10.1.0",
"dotenv": "17.3.1",
"eslint": "9.39.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.2",
"eslint-plugin-simple-import-sort": "12.1.1",
"globals": "17.4.0",
"graphql-ws": "6.0.7",
"jsdom": "28.1.0",
"randomstring": "1.3.1",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1",
"vite": "7.3.1",
"vite-plugin-node-polyfills": "0.25.0",
"vitest": "4.0.18"
},
"packageManager": "[email protected]+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017"
}