forked from facebook/Rapid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 5.71 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
{
"name": "RapiD",
"version": "1.1.8",
"description": "An AI-enhanced editor for OpenStreetMap",
"main": "dist/iD.min.js",
"repository": "github:facebookincubator/RapiD",
"homepage": "https://mapwith.ai",
"bugs": "https://github.com/facebookincubator/RapiD/issues",
"keywords": [
"editor",
"openstreetmap"
],
"license": "ISC",
"scripts": {
"all": "run-s clean build build:legacy dist",
"build": "run-s build:css build:data build:modern",
"build:css": "node scripts/build_css.js",
"build:data": "shx mkdir -p dist/data && node scripts/build_data.js",
"build:stats": "esbuild-visualizer --metadata dist/esbuild.json --exclude *.png --filename docs/statistics.html",
"build:modern": "node config/esbuild.config.modern.js",
"build:legacy": "node config/esbuild.config.legacy.js",
"clean": "shx rm -f dist/esbuild.json dist/*.js dist/*.map dist/*.css dist/img/*.svg",
"aws_deploy": "python3 scripts/aws_deploy.py",
"dist": "run-p dist:**",
"dist:mapillary": "shx mkdir -p dist/mapillary-js && shx cp -R node_modules/mapillary-js/dist/* dist/mapillary-js/",
"dist:pannellum": "shx mkdir -p dist/pannellum-streetside && shx cp -R node_modules/pannellum/build/* dist/pannellum-streetside/",
"dist:min:modern": "node config/esbuild.config.modern-min.js",
"dist:min:legacy": "node config/esbuild.config.legacy-min.js",
"dist:svg:iD": "svg-sprite --symbol --symbol-dest . --shape-id-generator \"iD-%s\" --symbol-sprite dist/img/iD-sprite.svg \"svg/iD-sprite/**/*.svg\"",
"dist:svg:community": "svg-sprite --symbol --symbol-dest . --shape-id-generator \"community-%s\" --symbol-sprite dist/img/community-sprite.svg node_modules/osm-community-index/dist/img/*.svg",
"dist:svg:fa": "svg-sprite --symbol --symbol-dest . --symbol-sprite dist/img/fa-sprite.svg svg/fontawesome/*.svg",
"dist:svg:maki": "svg-sprite --symbol --symbol-dest . --shape-id-generator \"maki-%s\" --symbol-sprite dist/img/maki-sprite.svg node_modules/@mapbox/maki/icons/*.svg",
"dist:svg:mapillary:signs": "svg-sprite --symbol --symbol-dest . --symbol-sprite dist/img/mapillary-sprite.svg node_modules/mapillary_sprite_source/package_signs/*.svg",
"dist:svg:mapillary:objects": "svg-sprite --symbol --symbol-dest . --symbol-sprite dist/img/mapillary-object-sprite.svg node_modules/mapillary_sprite_source/package_objects/*.svg",
"dist:svg:temaki": "svg-sprite --symbol --symbol-dest . --shape-id-generator \"temaki-%s\" --symbol-sprite dist/img/temaki-sprite.svg node_modules/@ideditor/temaki/icons/*.svg",
"imagery": "node scripts/update_imagery.js",
"lint": "eslint scripts test/spec modules",
"lint:fix": "eslint scripts test/spec modules --fix",
"start": "run-s build:legacy start:server",
"quickstart": "run-s build:modern start:server",
"start:server": "node scripts/server.js",
"test": "run-s lint build:css build:data build:legacy test:spec",
"test:spec": "phantomjs --web-security=no test/mocha-phantomjs-core/mocha-phantomjs-core.js test/index.html spec",
"translations": "node scripts/update_locales.js"
},
"dependencies": {
"@id-sdk/math": "~3.0.0-pre.10",
"@id-sdk/util": "~3.0.0-pre.10",
"@ideditor/country-coder": "~5.0.3",
"@ideditor/location-conflation": "~1.0.2",
"@mapbox/geojson-area": "^0.2.2",
"@mapbox/sexagesimal": "1.2.0",
"@mapbox/vector-tile": "^1.3.1",
"@tmcw/togeojson": "^4.5.0",
"@turf/bbox-clip": "^6.0.0",
"abortcontroller-polyfill": "^1.4.0",
"alif-toolkit": "^1.2.9",
"esbuild": "^0.13.9",
"fast-deep-equal": "~3.1.1",
"fast-json-stable-stringify": "2.1.0",
"lodash-es": "~4.17.15",
"marked": "~3.0.8",
"node-diff3": "~3.1.0",
"osm-auth": "^2.5.0",
"pannellum": "2.5.6",
"pbf": "^3.2.1",
"polygon-clipping": "~0.15.1",
"prop-types": "^15.7.2",
"rbush": "3.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"whatwg-fetch": "^3.4.1",
"which-polygon": "2.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.12.13",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "~5.15.1",
"@fortawesome/free-regular-svg-icons": "~5.15.1",
"@fortawesome/free-solid-svg-icons": "~5.15.1",
"@ideditor/temaki": "~5.0.0",
"@mapbox/maki": "^6.0.0",
"autoprefixer": "^10.3.7",
"babel-plugin-inline-json-import": "^0.3.2",
"btoa": "^1.2.1",
"chai": "^4.1.0",
"cldr-core": "39.0.0",
"cldr-localenames-full": "39.0.0",
"chalk": "^5.0.0",
"concat-files": "^0.1.1",
"core-js-bundle": "^3.19.0",
"d3": "~7.1.1",
"editor-layer-index": "github:osmlab/editor-layer-index#gh-pages",
"esbuild-plugin-babel": "^0.2.3",
"esbuild-visualizer": "^0.3.1",
"eslint": "^8.1.0",
"eslint-plugin-react": "^7.26.1",
"gaze": "^1.1.3",
"glob": "^7.2.0",
"happen": "^0.3.1",
"js-yaml": "^4.0.0",
"json-stringify-pretty-compact": "^3.0.0",
"mapillary_sprite_source": "^1.8.0",
"mapillary-js": "4.0.0",
"minimist": "^1.2.3",
"mocha": "^9.1.3",
"name-suggestion-index": "~6.0",
"node-fetch": "^3.0.0",
"npm-run-all": "^4.0.0",
"object-inspect": "1.11.0",
"osm-community-index": "~5.1.3",
"phantomjs-prebuilt": "~2.1.16",
"postcss": "^8.3.11",
"postcss-selector-prepend": "^0.5.0",
"shelljs": "^0.8.0",
"shx": "^0.3.0",
"sinon": "^9.0.0",
"sinon-chai": "^3.6.0",
"smash": "0.0",
"static-server": "^2.2.1",
"svg-sprite": "1.5.3"
},
"type": "module",
"engines": {
"node": "16.13.2"
},
"browserslist": [
"> 0.2%, last 6 major versions, Firefox ESR, IE 11, maintained node versions"
]
}