-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathpackage.json
88 lines (88 loc) · 2.73 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
{
"name": "neodash",
"version": "2.0.13",
"description": "NeoDash - Neo4j Dashboard Builder",
"neo4jDesktop": {
"apiVersion": "^1.2.0"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/nielsdejong/neodash/"
},
"license": "Apache-2.0",
"icons": [
{
"src": "favicon.ico",
"type": "ico"
},
{
"src": "favicon.png",
"type": "png"
}
],
"scripts": {
"dev": "npx webpack-dev-server --mode development",
"build": "npx webpack --mode production && cp -r public/* dist/",
"sync": "aws s3 sync --acl public-read build s3://neodash.graphapp.io/preview",
"test": "ts-mocha \"src/**/*.test.tsx\" --require @babel/register --recursive"
},
"keywords": [],
"author": "Niels de Jong",
"dependencies": {
"@babel/runtime": "^7.14.6",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/styles": "^4.11.4",
"@mui/material": "^5.3.0",
"@mui/x-data-grid": "^5.2.2",
"@nivo/bar": "^0.79.1",
"@nivo/core": "^0.79.0",
"@nivo/line": "^0.79.1",
"@nivo/pie": "^0.79.1",
"babel-runtime": "^6.26.0",
"classnames": "^2.3.1",
"codemirror": "^5.65.1",
"cypher-codemirror": "github:nielsdejong/cypher-editor#c0eff97fc97f22355e60b57fb6f8dc26b16f9a5f",
"d3-scale-chromatic": "^3.0.0",
"leaflet": "^1.7.1",
"material-ui-color-picker": "github:nielsdejong/material-ui-color-picker#fd4766cc4e8e38966417fbdbf62ebe628dd699ec",
"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-leaflet": "^3.2.5",
"react-leaflet-enhanced-marker": "github:nielsdejong/react-leaflet-enhanced-marker#603a7d73dc9b13a31ab1e8abfd932d63263b4af0",
"react-markdown": "^8.0.0",
"react-redux": "^7.2.6",
"redux-devtools-extension": "^2.13.9",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.1",
"remark-gfm": "^3.0.1",
"reselect": "^4.1.5",
"use-neo4j": "^0.3.6"
},
"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",
"babel-loader": "^8.2.3",
"css-loader": "^3.6.0",
"file-loader": "^6.2.0",
"react-hot-loader": "^4.13.0",
"source-map-loader": "^1.1.3",
"style-loader": "^1.1.3",
"styled-components": "^5.3.3",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3"
}
}