forked from OpenHistoricalMap/nominatim-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "nominatim-ui",
"description": "Debug web interface for Nominatim geocoder",
"version": "3.2.7",
"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": {
"@rollup/plugin-commonjs": "^22.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"eslint-plugin-mocha": "^10.0",
"fs-extra": "^10.0.0",
"http": "^0.0.1-security",
"http-proxy": "^1.18.1",
"mocha": "^10.0",
"puppeteer": "^16.0",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.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": "^3.49.0"
},
"dependencies": {
"bootstrap": "^5.0.0",
"escape-html": "^1.0.3",
"eslint": "^8.0",
"eslint-config-airbnb-base": "^15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-svelte3": "^4.0",
"leaflet": "1.8.0",
"leaflet-minimap": "^3.6.1",
"timeago.js": "^4.0.2"
}
}