forked from cesium/CeSIUMpeloMundo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.74 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
{
"name": "cesium-pelo-mundo",
"description": "A world map with the places we've been",
"version": "1.0.0-beta",
"license": "MIT",
"homepage": "https://pelomundo.cesium.di.uminho.pt",
"bugs": "https://github.com/cesium/CeSIUMpeloMundo/issues",
"repository": {
"type": "git",
"url": "https://github.com/cesium/CeSIUMpeloMundo"
},
"private": true,
"scripts": {
"develop": "npm-run-all dev",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npm-run-all lint:*",
"lint:js": "next lint",
"lint:css": "stylelint --fix './**/*.css' --ignore-path .gitignore",
"fmt": "npm-run-all format",
"format": "prettier --write . --ignore-path .gitignore",
"test": "npm-run-all test:*",
"test:lint": "npm-run-all test:lint:*",
"test:lint:js": "eslint . --ignore-path .gitignore",
"test:lint:css": "stylelint './**/*.css' --ignore-path .gitignore",
"test:format": "prettier --check . --ignore-path .gitignore"
},
"dependencies": {
"classnames": "^2.3.1",
"leaflet": "^1.9.0",
"leaflet.markercluster": "^1.5.3",
"luxon": "^3.0.1",
"next": "^12.2.3",
"next-global-css": "1.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.0.1",
"react-leaflet-cluster": "^2.0.0",
"react-transition-group": "^4.4.5",
"sharp": "^0.30.7"
},
"devDependencies": {
"@types/leaflet": "^1.7.11",
"@types/node": "^17.0.42",
"@types/react": "^18.0.12",
"@types/react-transition-group": "^4.4.5",
"eslint": "^8.17.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"stylelint": "^14.0.0",
"stylelint-config-recommended": "^8.0.0"
}
}