initial commit
parents
.eslintrc
0 → 100644
.gitignore
0 → 100644
.npmrc
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
jsconfig.js
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "mpi-de-sphaera-fingerprintchain-explorer", | ||
"license": "MIT", | ||
"author": "Studio NAND GmbH <hello@nand.io> (https://nand.io/)", | ||
"version": "1.0.0", | ||
"engines": { | ||
"npm": ">=7.0.0", | ||
"node": ">=15.0.0" | ||
}, | ||
"scripts": { | ||
"dev": "next dev src", | ||
"build": "next build src/", | ||
"start": "next start src/", | ||
"lint": "next lint --dir src", | ||
"lint:fix": "next lint --dir src --fix" | ||
}, | ||
"dependencies": { | ||
"@emotion/cache": "latest", | ||
"@emotion/react": "latest", | ||
"@emotion/server": "latest", | ||
"@emotion/styled": "latest", | ||
"@mui/icons-material": "latest", | ||
"@mui/material": "latest", | ||
"@turf/turf": "^6.5.0", | ||
"animated": "^0.2.2", | ||
"d3": "^7.2.1", | ||
"honeycomb-grid": "^3.1.8", | ||
"lodash": "^4.17.21", | ||
"maplibre-gl": "^1.15.2", | ||
"mobx": "^6.3.12", | ||
"mobx-react": "^7.2.1", | ||
"next": "latest", | ||
"prop-types": "latest", | ||
"react": "latest", | ||
"react-dom": "latest", | ||
"react-map-gl": "^6.1.18", | ||
"react-pixi-fiber": "^1.0.0-beta.15", | ||
"react-virtualized-auto-sizer": "^1.0.6" | ||
}, | ||
"devDependencies": { | ||
"eslint": "7.32.0", | ||
"eslint-config-next": "^11.0.1", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"prettier": "^2.3.2" | ||
} | ||
} |
src/api/index.js
0 → 100644
src/components/Header.js
0 → 100644