-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2 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
{
"name": "meshdirectory-web",
"version": "2.1.0",
"authors": [
"Miroslav Bauer @ CESNET <https://github.com/mirekys>"
],
"license": "MIT",
"engines": {
"node": ">=16"
},
"scripts": {
"lint": "yarn prettier && yarn eslint",
"eslint": "next lint --dir src",
"prettier": "prettier -l \"./src/**/*.{js,jsx,md}\"",
"dev": "PROVIDERS_API=https://iop.sciencemesh.uni-muenster.de/iop/mentix/cs3 next dev",
"build": "next build",
"export": "EXPORT=true next build && EXPORT=true next export",
"analyze": "ANALYZE=true next build",
"start": "next start",
"minifygeo": "mapshaper public/data/countries.geo.json -dissolve -o public/data/land.geo.json && mapshaper public/data/land.geo.json -simplify 20% -o public/data/land.geo.tmp.json && tr -d '\\n' < public/data/land.geo.tmp.json | sed -r 's/geometries/geometry/ ; 1 s/\\[//; s/..$/}/' > public/data/land.geo.min.json && rm -f public/data/land.geo.tmp.json"
},
"dependencies": {
"@cs3org/cs3apis": "^0.0.62",
"@cs3org/node-cs3apis": "^0.0.53",
"@fontsource/source-sans-pro": "^4.5.11",
"@grpc/grpc-js": "^1.8.22",
"@headlessui/react": "^1.7.4",
"@react-three/drei": "^9.40.0",
"@react-three/fiber": "^8.9.0",
"next": "^13.0.4",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-icons": "^4.6.0",
"react-merge-refs": "^2.0.1",
"three": "^0.146.0",
"three-globe": "^2.24.10",
"three-stdlib": "^2.17.3",
"use-local-storage-state": "^18.1.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.3.1",
"autoprefixer": "^10.4.12",
"eslint": "^8.24.0",
"eslint-config-next": "^13.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-tailwind": "^0.2.1",
"file-loader": "^6.2.0",
"mapshaper": "^0.6.44",
"next-secure-headers": "^2.2.0",
"postcss": "^8.4.31",
"prettier": "^2.7.1",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.2.1",
"url-loader": "^4.1.1"
}
}