-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
126 lines (126 loc) · 4.31 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
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
117
118
119
120
121
122
123
124
125
126
{
"name": "@neo4j/graphql-toolbox",
"private": true,
"version": "1.0.0",
"description": "Developer UI For Neo4j GraphQL",
"exports": "./dist/main.js",
"main": "./dist/main.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*.ts",
"dist/**/*.ts.map",
"dist/**/*.js",
"dist/**/*.js.map"
],
"engines": {
"node": ">=16.0.0"
},
"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 webpack --config webpack.config.js",
"start": "cross-env NODE_ENV=development webpack serve",
"start:https": "cross-env NODE_ENV=development webpack serve --https",
"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"
},
"author": "Neo4j",
"dependencies": {
"@codemirror/autocomplete": "6.18.3",
"@codemirror/commands": "6.7.1",
"@codemirror/lang-javascript": "6.2.2",
"@codemirror/language": "6.10.6",
"@dnd-kit/core": "6.2.0",
"@dnd-kit/modifiers": "7.0.0",
"@dnd-kit/sortable": "8.0.0",
"@graphiql/react": "0.27.0",
"@neo4j-ndl/base": "2.12.14",
"@neo4j-ndl/react": "2.16.28",
"@neo4j/graphql": "6.2.0",
"@neo4j/introspector": "4.0.0",
"classnames": "2.5.1",
"cm6-graphql": "0.2.0",
"codemirror": "6.0.1",
"dotenv-webpack": "8.1.0",
"graphiql-explorer": "0.9.0",
"graphql": "16.9.0",
"graphql-query-complexity": "0.12.0",
"neo4j-driver": "5.27.0",
"prettier": "3.4.1",
"process": "0.11.10",
"react": "18.3.1",
"react-dom": "18.3.1",
"thememirror": "2.0.1",
"zustand": "4.5.5"
},
"devDependencies": {
"@playwright/test": "1.49.0",
"@tsconfig/create-react-app": "2.0.5",
"@types/codemirror": "5.60.15",
"@types/jest": "29.5.14",
"@types/lodash.debounce": "4.0.9",
"@types/prettier": "3.0.0",
"@types/react-dom": "18.3.1",
"@types/webpack": "5.28.5",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"autoprefixer": "10.4.20",
"compression-webpack-plugin": "11.1.0",
"copy-webpack-plugin": "12.0.2",
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"dotenv": "16.4.5",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-summary": "1.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-simple-import-sort": "12.1.1",
"fork-ts-checker-webpack-plugin": "9.0.2",
"graphql-ws": "5.16.0",
"html-inline-script-webpack-plugin": "3.2.1",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "5.6.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"node-polyfill-webpack-plugin": "3.0.0",
"parse5": "7.2.1",
"postcss": "8.4.49",
"postcss-loader": "8.1.1",
"randomstring": "1.3.0",
"style-loader": "4.0.0",
"tailwindcss": "3.4.15",
"terser-webpack-plugin": "5.3.10",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths-webpack-plugin": "4.2.0",
"typescript": "5.7.2",
"vitest": "2.1.6",
"webpack": "5.96.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.1.0",
"webpack-notifier": "1.15.0"
},
"packageManager": "[email protected]"
}