-
Notifications
You must be signed in to change notification settings - Fork 576
/
package.json
107 lines (107 loc) · 3.38 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
{
"name": "geojson.io",
"version": "0.1.1",
"description": "create and edit maps, on the internet",
"main": "index.html",
"type": "module",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.2.0",
"@mapbox/geojson-extent": "^1.0.1",
"@mapbox/geojson-normalize": "0.0.1",
"@mapbox/geojson-rewind": "0.5.2",
"@mapbox/geojsonhint": "^3.2.0",
"@mapbox/gist-map-browser": "0.2.1",
"@mapbox/github-file-browser": "0.6.1",
"@mapbox/maki": "^8.0.1",
"@mapbox/mapbox-gl-draw": "1.4.1",
"@mapbox/mapbox-gl-geocoder": "^5.0.2",
"@mapbox/polyline": "^1.1.1",
"@placemarkio/tokml": "^0.3.3",
"@popperjs/core": "^2.11.6",
"@sentry/browser": "^7.20.0",
"@sentry/tracing": "^7.20.0",
"@tmcw/togeojson": "5.2.2",
"@turf/area": "^6.5.0",
"@turf/bbox": "^6.5.0",
"@turf/circle": "^6.5.0",
"@turf/length": "^6.5.0",
"bowser": "^2.11.0",
"buffer": "^6.0.3",
"clone": "0.1.16",
"codemirror": "5.65.9",
"csv2geojson": "5.1.2",
"d3": "3.5.17",
"d3-metatable": "0.3.0",
"escape-html": "^1.0.1",
"file-saver": "2.0.5",
"geojson-flatten": "^1.0.4",
"geojson-random": "0.1.0",
"geojson2dsv": "0.1.0",
"lodash": "^4.17.21",
"mapbox-gl": "^3.5.2",
"numeral": "^2.0.6",
"osmtogeojson": "3.0.0-beta.5",
"polytogeojson": "0.0.1",
"qs-hash": "0.0.0",
"shp-write": "0.3.2",
"smash": "0.0.15",
"store": "1.3.14",
"topojson-client": "3.1.0",
"topojson-server": "3.0.1",
"wellknown": "0.5.0",
"wkx": "^0.5.0",
"xtend": "3.0.0"
},
"devDependencies": {
"@jackfranklin/rollup-plugin-markdown": "^0.4.0",
"@mapbox/eslint-config-mapbox": "^3.0.0",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-terser": "^0.2.0",
"@vercel/git-hooks": "^1.0.0",
"babelify": "^10.0.0",
"concurrently": "^7.6.0",
"envify": "^4.1.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.0.3",
"live-server": "^1.2.2",
"prettier": "^2.7.1",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-import-css": "^3.1.0",
"rollup-plugin-polyfill-node": "^0.11.0",
"tailwindcss": "^3.2.3",
"tape": "^5.6.1"
},
"scripts": {
"lint": "eslint src/**/*.js",
"format": "prettier --write src/**/*.{js,md,html,css}",
"git-pre-commit": "lint-staged",
"test": "npm run lint",
"test-browser": "browserify test/index.js | testling",
"start": "concurrently --kill-others --names live-server rollup \"live-server --ignore=\"$PWD/src/**,$PWD/dist/webfonts/**,$PWD/.git\"\" \"rollup -cw\" \"npx tailwindcss -i $PWD/src/css/tailwind_src.css -o $PWD/dist/css/tailwind_dist.css --watch\"",
"build": "rimraf dist && npx tailwindcss -i ./src/css/tailwind_src.css -o ./dist/css/tailwind_dist.css && rollup -c",
"serve": "live-server",
"deploy": "sh deploy.sh"
},
"lint-staged": {
"src/**/*.js": "eslint --fix",
"src/**/*.{js,md,html,css}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/geojson.io.git"
},
"author": "MapBox",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/geojson.io/issues"
},
"window": {
"toolbar": false
}
}