forked from neo4j/neo4j-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
231 lines (231 loc) · 8.53 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
{
"name": "neo4j-browser",
"version": "5.3.0",
"description": "Neo4j Browser is the general purpose user interface for working with Neo4j. Query, visualize, administer and monitor the database.",
"neo4jDesktop": {
"apiVersion": "^1.4.0"
},
"propertiesToCopyToManifest": [
"description",
"homepage",
"neo4jDesktop",
"version"
],
"repository": {
"type": "git",
"url": "https://github.com/neo4j/neo4j-browser.git"
},
"keywords": [],
"author": "Neo4j Inc.",
"license": "GPL-3.0",
"homepage": "https://neo4j.com/developer/guide-neo4j-browser/",
"main": "dist/index.html",
"scripts": {
"build": "cross-env NODE_ENV=\"production\" webpack --config ./build_scripts/webpack.config.js",
"dev": "jest --watch",
"e2e": "cypress run",
"e2e-open": "cypress open",
"e2e-aura": "CYPRESS_E2E_TEST_ENV=\"aura\" CYPRESS_BASE_URL=\"https://localhost:8080\" cypress run",
"e2e-aura-open": "CYPRESS_E2E_TEST_ENV=\"aura\" CYPRESS_BASE_URL=\"https://localhost:8080\" cypress open",
"e2e-local": "CYPRESS_E2E_TEST_ENV=\"local\" cypress run",
"e2e-local-open": "CYPRESS_E2E_TEST_ENV=\"local\" cypress open",
"format": "prettier-eslint --write 'src/**/!(*.min).{js,jsx,ts,tsx,css,json}' 'e2e_tests/**/*.{js,jsx,ts,tsx,css,json}' 'scripts/**/*.{js,jsx,ts,tsx,css,json}' 'build_scripts/**/*.{js,jsx,ts,tsx,css,json}'",
"jest": "jest",
"jest-cov": "jest --coverage",
"jest-update": "jest --updateSnapshot",
"lint": "eslint --fix --ext .ts --ext .tsx ./",
"lint-quiet": "eslint --fix --ext .ts --ext .tsx ./ --quiet",
"precommit": "lint-staged",
"prepare-jar": "node ./scripts/prepare-mvn-package.js",
"generate-canary-manifest": "node ./scripts/convert-to-canary-manifest.js",
"start": "cross-env NODE_ENV=development webpack-dev-server --colors --config ./build_scripts/webpack.config.js",
"starts": "cross-env NODE_ENV=development webpack-dev-server --https --colors --config ./build_scripts/webpack.config.js",
"start-prod": "cross-env NODE_ENV=production webpack-dev-server --colors --config ./build_scripts/webpack.config.js",
"starts-prod": "cross-env NODE_ENV=production webpack-dev-server --https --colors --config ./build_scripts/webpack.config.js",
"test": "tsc --noEmit && yarn lint-quiet && yarn jest",
"test-e2e": "npx concurrently --kill-others -n 'neo4j,cypress,browser' 'docker run --env NEO4J_AUTH=neo4j/newpassword -p7474:7474 -p7687:7687 neo4j:4.2.2' 'yarn wait-on-neo4j && yarn wait-on-dev && yarn e2e-local --env server=4.2' 'yarn && yarn start'",
"update-licenses": "sh ./scripts/generate_licenses.sh",
"version-pom": "node ./scripts/set-pom-version.js -f ./pom.xml -v $npm_package_version",
"version": "npm run version-pom && git add ./pom.xml",
"wait-on-dev": "wait-on -c ./build_scripts/wait-on-config.js http-get://localhost:8080",
"wait-on-devs": "wait-on -c ./build_scripts/wait-on-config.js https-get://localhost:8080",
"wait-on-neo4j": "wait-on -c ./build_scripts/wait-on-config.js http-get://localhost:7474",
"wait-on-neo4js": "wait-on -c ./build_scripts/wait-on-config.js https-get://localhost:7473"
},
"lint-staged": {
"linters": {
"*.{js,jsx,ts,tsx,css,json}": [
"prettier-eslint --write",
"git add"
]
}
},
"engines": {
"yarn": ">=1.10",
"node": ">= 16.10.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@hot-loader/react-dom": "^17.0.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.1",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/apollo-upload-client": "^14.1.0",
"@types/d3-color": "^3.0.2",
"@types/d3-drag": "^3.0.1",
"@types/d3-ease": "^3.0.0",
"@types/d3-force": "^3.0.3",
"@types/d3-scale": "^4.0.2",
"@types/d3-selection": "^3.0.2",
"@types/d3-shape": "^3.0.2",
"@types/d3-transition": "^3.0.1",
"@types/d3-zoom": "^3.0.1",
"@types/dateformat": "^3.0.1",
"@types/file-saver": "^2.0.1",
"@types/jest": "^24.9.0",
"@types/jsonic": "^0.3.0",
"@types/lodash-es": "^4.17.6",
"@types/luxon": "^2.0.3",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.9",
"@types/react-svg-inline": "^2.1.1",
"@types/react-table": "7.0.16",
"@types/redux-mock-store": "^1.0.2",
"@types/semver": "^7.3.4",
"@types/styled-components": "^5.1.1",
"@types/uuid": "^8.3.0",
"@types/whatwg-url": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"autoprefixer": "^7.1.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.2.4",
"babel-loader": "^8.0.4",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-module-resolver": "^2.4.0",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-runtime": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"cross-env": "^6.0.3",
"css-loader": "^1.0.0",
"cypress": "^8.3.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^4.1.2",
"express": "^4.15.4",
"file-loader": "^2.0.0",
"fork-ts-checker-notifier-webpack-plugin": "^3.0.0",
"fork-ts-checker-webpack-plugin": "^5.0.14",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.5.2",
"husky": "^0.14.3",
"jest": "^25.2.4",
"jest-canvas-mock": "^1.1.0",
"js2xmlparser": "^3.0.0",
"json-loader": "^0.5.7",
"lint-staged": "^4.1.3",
"mini-css-extract-plugin": "^0.4.4",
"mockdate": "^2.0.5",
"monaco-editor-webpack-plugin": "^3.0.0",
"ncp": "^2.0.0",
"nock": "^12.0.3",
"postcss": "^6.0.11",
"postcss-cssnext": "^3.0.2",
"postcss-loader": "^3.0.0",
"precss": "^2.0.0",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.0",
"raf": "^3.4.0",
"raw-loader": "^0.5.1",
"react-hot-loader": "^4.13.0",
"react-refresh": "^0.11.0",
"react-test-renderer": "^17.0.2",
"redux-mock-store": "^1.2.3",
"style-loader": "^0.23.1",
"ts-jest": "^25.0.0",
"ts-loader": "^8.0.2",
"typescript": "^3.9.5",
"typescript-plugin-styled-components": "^1.5.0",
"url-loader": "^1.1.2",
"wait-on": "^3.1.0",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.10.3",
"worker-loader": "^2.0.0",
"xml2js": "^0.4.19"
},
"dependencies": {
"@apollo/client": "^3.2.0",
"@juggle/resize-observer": "^3.3.1",
"@neo4j-devtools/word-color": "^0.0.7",
"@neo4j-ndl/base": "^0.8.7",
"@neo4j-ndl/react": "^0.9.2",
"@neo4j/browser-lambda-parser": "1.0.5",
"@sentry/integrations": "^5.29.0",
"@sentry/react": "^5.29.0",
"@sentry/tracing": "^5.27.0",
"apollo-upload-client": "^14.1.2",
"ascii-data-table": "^2.1.1",
"canvg": "^3.0.7",
"core-js": "3",
"cypher-editor-support": "1.1.10",
"d3-color": "^3.0.1",
"d3-drag": "^3.0.0",
"d3-ease": "^3.0.1",
"d3-force": "^3.0.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.0.1",
"d3-transition": "^3.0.1",
"d3-zoom": "^3.0.0",
"deepmerge": "^2.1.1",
"file-saver": "^1.3.8",
"firebase": "^7.13.2",
"graphql": "^15.3.0",
"isomorphic-fetch": "^2.2.1",
"jsonic": "^0.3.0",
"jszip": "^3.2.2",
"lodash-es": "^4.17.21",
"luxon": "^2.0.2",
"memoize-one": "^5.2.1",
"monaco-editor": "0.23.0",
"neo4j-client-sso": "1.2.2",
"neo4j-driver": "^5.2.0",
"re-resizable": "^6.9.9",
"react": "^17.0.2",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-markdown": "^8.0.0",
"react-redux": "^5.0.7",
"react-suber": "1.0.4",
"react-svg-inline": "^2.1.1",
"react-table": "7.0.4",
"react-timeago": "^4.1.9",
"redux": "^3.7.2",
"redux-observable": "^0.16.0",
"regenerator-runtime": "^0.13.2",
"remark-gfm": "^3.0.1",
"rxjs": "^5.4.2",
"semantic-ui-react": "^0.88.0",
"semver": "^5.5.0",
"styled-components": "^5.3.3",
"suber": "^5.0.1",
"uuid": "^3.0.1",
"whatwg-url": "^11.0.0"
}
}