forked from neo4j-labs/neodash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.72 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
{
"name": "neodash",
"version": "2.2.3",
"description": "NeoDash - Neo4j Dashboard Builder",
"neo4jDesktop": {
"apiVersion": "^1.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/neo4j-labs/neodash/"
},
"license": "Apache-2.0",
"icons": [
{
"src": "favicon.ico",
"type": "ico"
},
{
"src": "favicon.png",
"type": "png"
}
],
"scripts": {
"dev": "yarn webpack-dev-server --mode development",
"debug": "yarn --node-options='--inspect' webpack-dev-server --mode development",
"build": "yarn webpack --mode production && cp -r public/* dist/",
"build-minimal": "yarn webpack --mode production --env production && cp -r public/* dist/",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"lint": "eslint --ext .ts --ext .tsx .",
"lint-staged": "lint-staged --config .lintstagedrc.json",
"prepare": "husky install",
"test": "yarn cypress open",
"test-headless": "yarn cypress run"
},
"keywords": [],
"author": "Neo4j Labs",
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@codemirror/language-data": "^6.1.0",
"@codemirror/lang-markdown": "^6.0.5",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/styles": "^4.11.4",
"@mui/material": "^5.3.0",
"@mui/x-data-grid": "5.10.0",
"@neo4j-cypher/react-codemirror": "^1.0.0-next.21",
"@nivo/bar": "^0.80.0",
"@nivo/circle-packing": "^0.80.0",
"@nivo/core": "^0.80.0",
"@nivo/geo": "^0.80.0",
"@nivo/line": "^0.80.0",
"@nivo/pie": "^0.80.0",
"@nivo/radar": "^0.80.0",
"@nivo/sankey": "^0.80.0",
"@nivo/sunburst": "^0.80.0",
"@nivo/treemap": "^0.80.0",
"babel-runtime": "^6.26.0",
"classnames": "^2.3.1",
"d3-scale-chromatic": "^3.0.0",
"dom-to-image": "^2.6.0",
"leaflet": "^1.7.1",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"material-ui-color-picker": "^3.5.1",
"neo4j-client-sso": "^1.2.2",
"react": "^17.0.2",
"react-cool-dimensions": "^2.0.7",
"react-dom": "^17.0.2",
"react-force-graph-2d": "^1.23.8",
"react-gauge-chart": "^0.4.0",
"react-grid-layout": "^1.3.4",
"react-leaflet": "^3.2.5",
"react-leaflet-cluster": "^1.0.4",
"react-leaflet-enhanced-marker": "^1.0.21",
"react-leaflet-heatmap-layer-v3": "^3.0.3-beta-1",
"react-markdown": "^8.0.0",
"react-redux": "^7.2.6",
"react-use-error-boundary": "^3.0.0",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.1",
"remark-gfm": "^3.0.1",
"reselect": "^4.1.5",
"use-neo4j": "^0.3.13"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/register": "^7.16.9",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@redux-devtools/extension": "^3.2.3",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"babel-loader": "^8.2.3",
"css-loader": "^3.6.0",
"cypress": "^9.5.3",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react-hot-loader": "^4.13.0",
"serverless-finch": "^4.0.0",
"source-map-loader": "^4.0.0",
"style-loader": "^1.1.3",
"styled-components": "^5.3.3",
"typescript": "^4.8.4",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3"
}
}