mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 12:37:44 +01:00
3d2a1d5d19
Style spec additions
145 lines
4.2 KiB
JSON
145 lines
4.2 KiB
JSON
{
|
|
"name": "maputnik",
|
|
"version": "1.5.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": {
|
|
"@babel/runtime": "^7.1.2",
|
|
"@mapbox/mapbox-gl-rtl-text": "^0.2.1",
|
|
"@mapbox/mapbox-gl-style-spec": "^13.3.0",
|
|
"classnames": "^2.2.6",
|
|
"codemirror": "^5.40.2",
|
|
"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.50.0-beta.1",
|
|
"mapbox-gl-inspect": "^1.3.1",
|
|
"maputnik-design": "github:maputnik/design",
|
|
"ol": "^5.2.0",
|
|
"ol-mapbox-style": "^3.1.0",
|
|
"prop-types": "^15.6.2",
|
|
"react": "^16.5.2",
|
|
"react-aria-menubutton": "^6.0.1",
|
|
"react-aria-modal": "^3.0.0",
|
|
"react-autobind": "^1.0.6",
|
|
"react-autocomplete": "^1.8.1",
|
|
"react-codemirror2": "^5.1.0",
|
|
"react-collapse": "^4.0.3",
|
|
"react-color": "^2.14.1",
|
|
"react-dom": "^16.5.2",
|
|
"react-file-reader-input": "^2.0.0",
|
|
"react-icon-base": "^2.1.2",
|
|
"react-icons": "^3.1.0",
|
|
"react-motion": "^0.5.2",
|
|
"react-sortable-hoc": "^0.8.3",
|
|
"reconnecting-websocket": "^3.2.2",
|
|
"slugify": "^1.3.1",
|
|
"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": "^7.1.2",
|
|
"@babel/plugin-proposal-class-properties": "^7.1.0",
|
|
"@babel/plugin-transform-runtime": "^7.1.0",
|
|
"@babel/preset-env": "^7.1.0",
|
|
"@babel/preset-flow": "^7.0.0",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"babel-eslint": "^10.0.1",
|
|
"babel-loader": "8.0.4",
|
|
"babel-plugin-istanbul": "^5.0.1",
|
|
"copy-webpack-plugin": "^4.5.2",
|
|
"cors": "^2.8.4",
|
|
"cross-env": "^5.2.0",
|
|
"css-loader": "^1.0.0",
|
|
"eslint": "^5.6.1",
|
|
"eslint-plugin-react": "^7.11.1",
|
|
"express": "^4.16.3",
|
|
"file-loader": "^2.0.0",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"is-docker": "^1.1.0",
|
|
"istanbul": "^0.4.5",
|
|
"istanbul-lib-coverage": "^2.0.1",
|
|
"mkdirp": "^0.5.1",
|
|
"mocha": "^5.2.0",
|
|
"node-sass": "^4.9.3",
|
|
"raw-loader": "^0.5.1",
|
|
"react-hot-loader": "^4.3.11",
|
|
"sass-loader": "^7.1.0",
|
|
"selenium-standalone": "^6.15.3",
|
|
"style-loader": "^0.23.0",
|
|
"stylelint": "^9.6.0",
|
|
"stylelint-config-recommended-scss": "^3.2.0",
|
|
"stylelint-scss": "^3.3.1",
|
|
"transform-loader": "^0.2.4",
|
|
"uuid": "^3.3.2",
|
|
"wdio-mocha-framework": "^0.6.3",
|
|
"wdio-selenium-standalone-service": "0.0.10",
|
|
"wdio-spec-reporter": "^0.1.5",
|
|
"webdriverio": "^4.13.2",
|
|
"webpack": "^4.20.2",
|
|
"webpack-bundle-analyzer": "^3.0.2",
|
|
"webpack-cleanup-plugin": "^0.5.1",
|
|
"webpack-cli": "^3.1.2",
|
|
"webpack-dev-server": "^3.1.9"
|
|
}
|
|
}
|