mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 07:37:45 +01:00
922ee616ec
- Use the browsers fetch rather than the request module - base64-loader -> raw-loader - Remove ol3 because it's been broken for a while - Removed old GitHub gist support as it's no longer functional - Removed Mousetrap as we were only using a small part of the functionality - Moved to single js file to make things simplier
152 lines
4.6 KiB
JSON
152 lines
4.6 KiB
JSON
{
|
|
"name": "maputnik",
|
|
"version": "1.4.0",
|
|
"description": "A MapboxGL visual style editor",
|
|
"main": "''",
|
|
"scripts": {
|
|
"stats": "webpack --config config/webpack.production.config.js --profile --json > stats.json",
|
|
"build": "webpack --config config/webpack.production.config.js --progress --profile --colors",
|
|
"test": "cross-env NODE_ENV=test wdio config/wdio.conf.js",
|
|
"test-watch": "cross-env NODE_ENV=test wdio config/wdio.conf.js --watch",
|
|
"start": "webpack-dev-server --progress --profile --colors --config config/webpack.config.js",
|
|
"lint": "eslint --ext js --ext jsx {src,test}",
|
|
"lint-styles": "stylelint 'src/styles/*.scss'"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/maputnik/editor"
|
|
},
|
|
"author": "Lukas Martinelli",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/maputnik/editor#readme",
|
|
"dependencies": {
|
|
"@mapbox/mapbox-gl-rtl-text": "^0.2.0",
|
|
"@mapbox/mapbox-gl-style-spec": "^13.1.0",
|
|
"classnames": "^2.2.5",
|
|
"codemirror": "^5.37.0",
|
|
"color": "^3.0.0",
|
|
"file-saver": "^1.3.8",
|
|
"jsonlint": "github:josdejong/jsonlint#85a19d7",
|
|
"lodash.capitalize": "^4.2.1",
|
|
"lodash.clamp": "^4.0.3",
|
|
"lodash.clonedeep": "^4.5.0",
|
|
"lodash.isequal": "^4.5.0",
|
|
"lodash.throttle": "^4.1.1",
|
|
"mapbox-gl": "^0.47.0",
|
|
"mapbox-gl-inspect": "^1.3.1",
|
|
"maputnik-design": "github:maputnik/design",
|
|
"ol-mapbox-style": "^2.10.1",
|
|
"ol": "^4.6.5",
|
|
"prop-types": "^15.6.0",
|
|
"react": "^16.3.2",
|
|
"react-aria-menubutton": "^5.1.1",
|
|
"react-aria-modal": "^2.12.1",
|
|
"react-autobind": "^1.0.6",
|
|
"react-autocomplete": "^1.7.2",
|
|
"react-codemirror2": "^4.2.1",
|
|
"react-collapse": "^4.0.3",
|
|
"react-color": "^2.14.1",
|
|
"react-dom": "^16.3.2",
|
|
"react-file-reader-input": "^1.1.4",
|
|
"react-icon-base": "^2.1.1",
|
|
"react-icons": "^2.2.7",
|
|
"react-motion": "^0.5.2",
|
|
"react-sortable-hoc": "^0.6.8",
|
|
"reconnecting-websocket": "^3.2.2",
|
|
"url": "^0.11.0"
|
|
},
|
|
"jshintConfig": {
|
|
"esversion": 6
|
|
},
|
|
"stylelint": {
|
|
"extends": "stylelint-config-recommended-scss",
|
|
"rules": {
|
|
"no-descending-specificity": null,
|
|
"media-feature-name-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreMediaFeatureNames": [
|
|
"prefers-reduced-motion"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"eslintConfig": {
|
|
"plugins": [
|
|
"react"
|
|
],
|
|
"extends": [
|
|
"plugin:react/recommended"
|
|
],
|
|
"env": {
|
|
"browser": true,
|
|
"node": true,
|
|
"es6": true
|
|
},
|
|
"parser": "babel-eslint",
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"impliedStrict": true,
|
|
"experimentalObjectRestSpread": true,
|
|
"jsx": true
|
|
}
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "^6.26.3",
|
|
"babel-eslint": "^8.2.3",
|
|
"babel-loader": "7.1.4",
|
|
"babel-plugin-istanbul": "^4.1.6",
|
|
"babel-plugin-transform-class-properties": "^6.24.1",
|
|
"babel-plugin-transform-decorators-legacy": "^1.3.4",
|
|
"babel-plugin-transform-flow-strip-types": "^6.22.0",
|
|
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
|
"babel-plugin-transform-runtime": "^6.23.0",
|
|
"babel-preset-env": "^1.6.1",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"babel-preset-flow": "^6.23.0",
|
|
"babel-preset-react": "^6.24.1",
|
|
"babel-register": "^6.26.0",
|
|
"babel-runtime": "^6.26.0",
|
|
"base64-loader": "^1.0.0",
|
|
"copy-webpack-plugin": "^4.5.1",
|
|
"cors": "^2.8.4",
|
|
"cross-env": "^5.1.4",
|
|
"css-loader": "^0.28.11",
|
|
"eslint": "^4.19.1",
|
|
"eslint-plugin-react": "^7.4.0",
|
|
"express": "^4.16.3",
|
|
"extract-text-webpack-plugin": "^3.0.2",
|
|
"file-loader": "^1.1.5",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"is-docker": "^1.1.0",
|
|
"istanbul": "^0.4.5",
|
|
"istanbul-lib-coverage": "^1.2.0",
|
|
"json-loader": "^0.5.7",
|
|
"mkdirp": "^0.5.1",
|
|
"mocha": "^5.1.1",
|
|
"node-sass": "^4.9.0",
|
|
"raw-loader": "^0.5.1",
|
|
"react-hot-loader": "^3.1.1",
|
|
"sass-loader": "^7.0.1",
|
|
"selenium-standalone": "^6.14.0",
|
|
"style-loader": "^0.20.3",
|
|
"stylelint": "^9.2.0",
|
|
"stylelint-config-recommended-scss": "^3.2.0",
|
|
"stylelint-scss": "^3.0.0",
|
|
"transform-loader": "^0.2.4",
|
|
"uglifyjs-webpack-plugin": "^1.2.4",
|
|
"uuid": "^3.1.0",
|
|
"wdio-mocha-framework": "^0.5.13",
|
|
"wdio-selenium-standalone-service": "0.0.10",
|
|
"wdio-spec-reporter": "^0.1.2",
|
|
"webdriverio": "^4.12.0",
|
|
"webpack": "^3.8.1",
|
|
"webpack-bundle-analyzer": "^2.9.0",
|
|
"webpack-cleanup-plugin": "^0.5.1",
|
|
"webpack-dev-server": "^2.9.4"
|
|
}
|
|
}
|