-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
49 lines (49 loc) · 1.46 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
{
"name": "nominatim-ui",
"description": "Debug web interface for Nominatim geocoder",
"version": "3.6.1",
"license": "GPL-2.0",
"scripts":
{
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint --quiet *.js src/ test/",
"lint:fix": "eslint --fix *.js src/ test/",
"test": "rollup -c && mocha --recursive test/",
"start": "static-server dist"
},
"devDependencies":
{
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@rollup/plugin-commonjs": "^28.0",
"@rollup/plugin-node-resolve": "^15.0",
"eslint": "^9.0",
"eslint-config-airbnb-base": "^15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^10.0",
"eslint-plugin-svelte": "^2.13",
"fs-extra": "^11.0.0",
"globals": "^15.11.0",
"http": "^0.0.1-security",
"http-proxy": "^1.18.1",
"mocha": "^10.0",
"puppeteer": "^23.0",
"rollup": "^4.22.4",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"static-server": "^2.2.1",
"svelte": "^5.0.0"
},
"dependencies":
{
"bootstrap": "^5.0.0",
"escape-html": "^1.0.3",
"leaflet": "1.9.4",
"leaflet-minimap": "^3.6.1",
"timeago.js": "^4.0.2"
},
"type": "module"
}