-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
63 lines (63 loc) · 2.06 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
{
"name": "@notum-cz/strapi-plugin-location",
"version": "1.3.3",
"description": "This plugin allows users to create location inputs and store latitude and longitude values as geometry types in a PostGIS database. It also provides functionality to filter items based on their location.",
"keywords": [
"strapi",
"plugin",
"location"
],
"bugs": {
"url": "https://github.com/notum-cz/strapi-plugin-location/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notum-cz/strapi-plugin-location.git"
},
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Dominik Míček <dominik.micek@notum.cz> (https://notum.cz/en/strapi)"
},
"maintainers": [
"Notum Technologies s.r.o. <sales@notum.cz> (https://notum.cz/en/strapi)",
"Dominik Juriga <dominik.juriga@notum.cz> (https://notum.cz/en/strapi)"
],
"scripts": {
"develop": "NODE_ENV=development tsc -p tsconfig.server.json -w"
},
"dependencies": {
"@notum-cz/strapi-plugin-location": "^1.3.2",
"@strapi/design-system": "^1.19.0",
"@strapi/helper-plugin": "^4.25.11",
"@strapi/icons": "^1.19.0",
"leaflet": "^1.9.4",
"prop-types": "^15.7.2",
"react-leaflet": "^4.2.1"
},
"devDependencies": {
"@strapi/strapi": "^4.25.1",
"@strapi/typescript-utils": "^4.24.5",
"@types/leaflet": "^1.9.12",
"@types/react": "^18.3.6",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^5.3.4",
"styled-components": "^5.3.11",
"typescript": "5.6.2"
},
"peerDependencies": {
"@strapi/strapi": "4.x"
},
"engines": {
"node": ">=14.19.1 <=20.x.x",
"npm": ">=6.0.0"
},
"strapi": {
"name": "location-plugin",
"description": "This plugin allows users to create location inputs and store latitude and longitude values as geometry types in a PostGIS database. It also provides functionality to filter items based on their location.",
"kind": "plugin"
}
}