-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
161 lines (161 loc) · 4.69 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "munimap",
"version": "2.0.0",
"description": "",
"main": "dist/munimap.js",
"type": "module",
"scripts": {
"dev": "webpack serve --config webpack.config.dev.babel.js",
"serve:build": "node server.js",
"prebuild": "node tasks/prebuild.js",
"postbuild": "node tasks/postbuild.js",
"build": "npm run webpack:latest",
"build:latest": "npm run build",
"build:v2n": "npm run webpack:v2n && npm run postbuild",
"build:testing": "npm run webpack:testing && npm run postbuild",
"lint": "eslint src server.js webpack.config.dev.babel.js webpack.config.production.babel.js --ext .js --ext .jsx",
"fixlint": "eslint --fix src server.js webpack.config.dev.babel.js webpack.config.production.babel.js --ext .js --ext .jsx",
"mocha": "mocha --timeout 0 --require test/hooks.js --recursive test/integration --reporter spec --exit",
"mocha:file": "mocha --timeout 0 --require test/hooks.js --file test/integration/identifycallback.js --reporter spec --exit",
"test:build": "npm run build:latest --domain=http://localhost:8079",
"test:mocha": "npm run mocha --port=8079",
"test:mocha-file": "npm run mocha:file --port=8079",
"test": "npm run test:build & npm run test:mocha",
"test:file": "npm run test:build & npm run test:mocha-file",
"typecheck": "tsc --pretty",
"webpack:latest": "webpack --config webpack.config.production.babel.js --env dir=latest",
"webpack:v2n": "webpack --config webpack.config.production.babel.js --env dir=v2n",
"webpack:testing": "webpack --config webpack.config.production.babel.js --env dir=testing"
},
"repository": {
"type": "git",
"url": "https://gitlab.ics.muni.cz/gis-dis-uvt/munimap/munimap.git"
},
"contributors": [
"Jan Tajovsky <[email protected]>",
"Bretislav Dancak"
],
"license": "Apache-2.0",
"bugs": {
"email": "[email protected]"
},
"homepage": "https://maps.muni.cz/munimap",
"engines": {
"node": ">=12"
},
"browserslist": [
"defaults",
"not ie 11"
],
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.17.7",
"@openlayers/eslint-plugin": "^4.0.0",
"@types/dompurify": "^2.3.3",
"@types/ol": "^6.5.0",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@types/uuid": "^8.3.4",
"@types/webpack-env": "^1.16.3",
"babel-loader": "^8.2.5",
"chai": "^4.3.7",
"circular-dependency-plugin": "^5.2.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"eslint": "^8.14.0",
"eslint-config-openlayers": "^16.1.0",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-react": "^7.29.4",
"esm": "^3.2.25",
"express": "^4.18.1",
"git-state": "^4.1.0",
"glob": "^8.0.1",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"mocha": "^10.2.0",
"node-html-parser": "^5.3.3",
"puppeteer": "^19.7.2",
"style-loader": "^3.3.1",
"typescript": "^4.6.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"dependencies": {
"@turf/bbox-polygon": "^6.5.0",
"@turf/boolean-point-in-polygon": "^6.5.0",
"@turf/intersect": "^6.5.0",
"core-js": "^3.22.6",
"dompurify": "^2.3.6",
"ol": "^6.14.1",
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-redux": "^8.0.1",
"react-select": "^5.3.1",
"redux": "^4.2.0",
"reselect": "^4.1.5",
"uuid": "^8.3.2",
"whatwg-fetch": "^3.6.2"
},
"overrides": {
"@types/react": "^18.0.8"
},
"eslintConfig": {
"globals": {
"PRODUCTION": "readonly",
"VERSION": "readonly",
"APP_PATH": "readonly",
"PROD_DOMAIN": "readonly",
"DEV_DOMAIN": "readonly",
"map_promise": "readonly",
"map_promise2": "readonly"
},
"parserOptions": {
"ecmaVersion": 2021,
"ecmaFeatures": {
"jsx": true
}
},
"settings": {
"react": {
"version": "detect"
}
},
"env": {
"mocha": true
},
"extends": [
"openlayers",
"plugin:react/recommended",
"plugin:react/jsx-runtime"
],
"plugins": [
"@openlayers"
],
"rules": {
"import/extensions": [
"error",
"always"
],
"valid-jsdoc": "off",
"@openlayers/valid-tsdoc": [
"error",
{
"requireReturn": false
}
],
"@openlayers/no-exclusive-tests": [
"error",
{
"include": "test/**/*.test.js"
}
],
"jsdoc/check-examples": "off"
}
}
}