2015-06-15 15:21:19 +02:00
|
|
|
{
|
2016-09-20 13:51:54 +02:00
|
|
|
"name": "maputnik",
|
2022-10-27 14:02:47 +02:00
|
|
|
"version": "2.0.0-pre.1",
|
|
|
|
"description": "A MapLibre GL visual style editor",
|
2015-06-15 15:21:19 +02:00
|
|
|
"main": "''",
|
|
|
|
"scripts": {
|
2023-10-22 22:11:06 +02:00
|
|
|
"stats": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack --config config/webpack.production.config.js --progress=profile --json > stats.json",
|
|
|
|
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack --config config/webpack.production.config.js --progress=profile --color",
|
|
|
|
"profiling-build": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack --config config/webpack.profiling.config.js --progress=profile --color",
|
|
|
|
"test": "cross-env NODE_OPTIONS=--openssl-legacy-provider cross-env NODE_ENV=test wdio config/wdio.conf.js",
|
|
|
|
"test-watch": "cross-env NODE_OPTIONS=--openssl-legacy-provider cross-env NODE_ENV=test wdio config/wdio.conf.js --watch",
|
|
|
|
"start": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack-dev-server --progress=profile --color --config config/webpack.config.js",
|
|
|
|
"start-prod": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack-dev-server --progress=profile --color --config config/webpack.production.config.js",
|
|
|
|
"start-sandbox": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack-dev-server --disable-host-check --host 0.0.0.0 --progress=profile --color --config config/webpack.production.config.js",
|
2020-02-21 09:06:01 +01:00
|
|
|
"lint-js": "eslint --ext js --ext jsx src test",
|
|
|
|
"lint-css": "stylelint \"src/styles/*.scss\"",
|
2020-06-01 17:09:32 +02:00
|
|
|
"lint": "npm run lint-js && npm run lint-css",
|
2023-10-22 22:11:06 +02:00
|
|
|
"storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider start-storybook -h 0.0.0.0 -p 6006",
|
|
|
|
"build-storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider build-storybook -o build/storybook"
|
2015-06-15 15:21:19 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-09-20 13:51:54 +02:00
|
|
|
"url": "https://github.com/maputnik/editor"
|
2015-06-15 15:21:19 +02:00
|
|
|
},
|
2016-09-08 19:50:27 +02:00
|
|
|
"author": "Lukas Martinelli",
|
2015-06-15 15:21:19 +02:00
|
|
|
"license": "MIT",
|
2016-09-20 13:51:54 +02:00
|
|
|
"homepage": "https://github.com/maputnik/editor#readme",
|
2015-06-15 15:21:19 +02:00
|
|
|
"dependencies": {
|
2022-04-08 02:23:43 +02:00
|
|
|
"@babel/runtime": "^7.17.9",
|
2019-10-09 23:06:59 +02:00
|
|
|
"@mapbox/mapbox-gl-rtl-text": "^0.2.3",
|
2022-10-27 14:02:47 +02:00
|
|
|
"@maplibre/maplibre-gl-style-spec": "^17.0.1",
|
2022-04-07 17:21:34 +02:00
|
|
|
"@mdi/react": "^1.5.0",
|
|
|
|
"array-move": "^4.0.0",
|
2023-07-13 21:35:16 +02:00
|
|
|
"buffer": "^6.0.3",
|
2022-04-07 17:21:34 +02:00
|
|
|
"classnames": "^2.3.1",
|
|
|
|
"codemirror": "^5.65.2",
|
|
|
|
"color": "^4.2.3",
|
|
|
|
"detect-browser": "^5.3.0",
|
|
|
|
"file-saver": "^2.0.5",
|
|
|
|
"json-stringify-pretty-compact": "^3.0.0",
|
2020-03-08 19:38:32 +01:00
|
|
|
"json-to-ast": "^2.1.0",
|
2020-03-08 20:00:36 +01:00
|
|
|
"jsonlint": "github:josdejong/jsonlint#85a19d7",
|
2022-04-07 17:21:34 +02:00
|
|
|
"lodash": "^4.17.21",
|
2016-12-28 16:48:49 +01:00
|
|
|
"lodash.capitalize": "^4.2.1",
|
2018-05-22 22:16:46 +02:00
|
|
|
"lodash.clamp": "^4.0.3",
|
2016-12-20 20:21:35 +01:00
|
|
|
"lodash.clonedeep": "^4.5.0",
|
2019-06-01 09:28:22 +02:00
|
|
|
"lodash.get": "^4.4.2",
|
2017-11-07 11:11:42 +01:00
|
|
|
"lodash.isequal": "^4.5.0",
|
2016-12-19 22:13:22 +01:00
|
|
|
"lodash.throttle": "^4.1.1",
|
2018-04-13 14:24:39 +02:00
|
|
|
"mapbox-gl-inspect": "^1.3.1",
|
2023-07-13 21:35:16 +02:00
|
|
|
"maplibre-gl": "^2.4.0",
|
2020-06-10 18:18:11 +02:00
|
|
|
"maputnik-design": "github:maputnik/design#172b06c",
|
2022-04-07 17:21:34 +02:00
|
|
|
"ol": "^6.14.1",
|
|
|
|
"ol-mapbox-style": "^7.1.1",
|
2023-12-04 04:21:35 +01:00
|
|
|
"pmtiles": "^2.11.0",
|
2022-04-07 17:21:34 +02:00
|
|
|
"prop-types": "^15.8.1",
|
|
|
|
"react": "^16.0.0",
|
|
|
|
"react-accessible-accordion": "^4.0.0",
|
|
|
|
"react-aria-menubutton": "^7.0.3",
|
|
|
|
"react-aria-modal": "^4.0.1",
|
2018-08-22 10:33:01 +02:00
|
|
|
"react-autobind": "^1.0.6",
|
2018-10-06 17:01:34 +02:00
|
|
|
"react-autocomplete": "^1.8.1",
|
2022-04-07 17:21:34 +02:00
|
|
|
"react-collapse": "^5.1.1",
|
|
|
|
"react-color": "^2.19.3",
|
|
|
|
"react-dom": "^16.0.0",
|
2018-10-06 17:01:34 +02:00
|
|
|
"react-file-reader-input": "^2.0.0",
|
|
|
|
"react-icon-base": "^2.1.2",
|
2022-04-07 17:21:34 +02:00
|
|
|
"react-icons": "^4.3.1",
|
|
|
|
"react-sortable-hoc": "^2.0.0",
|
2020-02-17 20:38:01 +01:00
|
|
|
"reconnecting-websocket": "^4.4.0",
|
2022-04-07 17:21:34 +02:00
|
|
|
"sass": "^1.50.0",
|
|
|
|
"slugify": "^1.6.5",
|
2020-06-09 20:11:07 +02:00
|
|
|
"string-hash": "^1.1.3",
|
2017-01-05 19:34:32 +01:00
|
|
|
"url": "^0.11.0"
|
2015-06-15 15:21:19 +02:00
|
|
|
},
|
2016-09-08 19:47:29 +02:00
|
|
|
"jshintConfig": {
|
|
|
|
"esversion": 6
|
|
|
|
},
|
2017-01-12 11:23:06 +01:00
|
|
|
"stylelint": {
|
2018-04-17 15:55:13 +02:00
|
|
|
"extends": "stylelint-config-recommended-scss",
|
|
|
|
"rules": {
|
2018-05-10 17:30:23 +02:00
|
|
|
"no-descending-specificity": null,
|
|
|
|
"media-feature-name-no-unknown": [
|
|
|
|
true,
|
|
|
|
{
|
|
|
|
"ignoreMediaFeatureNames": [
|
|
|
|
"prefers-reduced-motion"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2018-04-17 15:55:13 +02:00
|
|
|
}
|
2017-01-12 11:23:06 +01:00
|
|
|
},
|
2016-09-08 19:47:29 +02:00
|
|
|
"eslintConfig": {
|
2016-09-20 18:10:57 +02:00
|
|
|
"plugins": [
|
|
|
|
"react"
|
|
|
|
],
|
2017-11-08 09:47:36 +01:00
|
|
|
"extends": [
|
2016-09-08 19:47:29 +02:00
|
|
|
"plugin:react/recommended"
|
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"node": true,
|
|
|
|
"es6": true
|
|
|
|
},
|
2022-10-27 14:02:47 +02:00
|
|
|
"parser": "@babel/eslint-parser",
|
2016-09-08 19:47:29 +02:00
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 6,
|
|
|
|
"sourceType": "module",
|
|
|
|
"ecmaFeatures": {
|
2016-09-09 11:29:18 +02:00
|
|
|
"impliedStrict": true,
|
|
|
|
"experimentalObjectRestSpread": true,
|
2016-09-08 19:47:29 +02:00
|
|
|
"jsx": true
|
|
|
|
}
|
2020-03-30 10:57:14 +02:00
|
|
|
},
|
|
|
|
"settings": {
|
|
|
|
"react": {
|
|
|
|
"version": "detect"
|
|
|
|
}
|
2016-09-20 18:10:57 +02:00
|
|
|
}
|
2016-09-08 19:47:29 +02:00
|
|
|
},
|
2015-06-15 15:21:19 +02:00
|
|
|
"devDependencies": {
|
2022-04-07 17:21:34 +02:00
|
|
|
"@babel/core": "^7.17.9",
|
2022-10-27 14:02:47 +02:00
|
|
|
"@babel/eslint-parser": "^7.19.1",
|
2022-04-07 17:21:34 +02:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.16.7",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.17.0",
|
|
|
|
"@babel/preset-env": "^7.16.11",
|
|
|
|
"@babel/preset-flow": "^7.16.7",
|
|
|
|
"@babel/preset-react": "^7.16.7",
|
|
|
|
"@mdi/js": "^6.6.96",
|
|
|
|
"@storybook/addon-a11y": "^6.4.20",
|
|
|
|
"@storybook/addon-actions": "^6.4.20",
|
|
|
|
"@storybook/addon-links": "^6.4.20",
|
|
|
|
"@storybook/addon-storysource": "^6.4.20",
|
|
|
|
"@storybook/addons": "^6.4.20",
|
|
|
|
"@storybook/react": "^6.4.20",
|
|
|
|
"@storybook/theming": "^6.4.20",
|
|
|
|
"@wdio/cli": "^7.19.3",
|
|
|
|
"@wdio/local-runner": "^7.19.3",
|
|
|
|
"@wdio/mocha-framework": "^7.19.3",
|
|
|
|
"@wdio/selenium-standalone-service": "^7.19.1",
|
|
|
|
"@wdio/spec-reporter": "^7.19.1",
|
|
|
|
"babel-loader": "^8.2.4",
|
|
|
|
"babel-plugin-istanbul": "^6.1.1",
|
2019-10-09 23:06:59 +02:00
|
|
|
"babel-plugin-static-fs": "^3.0.0",
|
2022-04-07 17:21:34 +02:00
|
|
|
"copy-webpack-plugin": "^6.4.1",
|
2019-10-09 23:06:59 +02:00
|
|
|
"cors": "^2.8.5",
|
2022-04-07 17:21:34 +02:00
|
|
|
"cross-env": "^7.0.3",
|
|
|
|
"css-loader": "^5.2.7",
|
|
|
|
"eslint": "^8.12.0",
|
|
|
|
"eslint-plugin-react": "^7.29.4",
|
|
|
|
"express": "^4.17.3",
|
|
|
|
"html-webpack-inline-svg-plugin": "^2.3.0",
|
|
|
|
"html-webpack-plugin": "^4.5.2",
|
2018-01-05 18:45:55 +01:00
|
|
|
"istanbul": "^0.4.5",
|
2022-04-07 17:21:34 +02:00
|
|
|
"istanbul-lib-coverage": "^3.2.0",
|
2020-04-06 16:14:21 +02:00
|
|
|
"mkdirp": "^1.0.4",
|
2022-04-07 17:21:34 +02:00
|
|
|
"mocha": "^9.2.2",
|
|
|
|
"postcss": "^8.4.12",
|
|
|
|
"react-hot-loader": "^4.13.0",
|
|
|
|
"sass-loader": "^10.2.1",
|
|
|
|
"style-loader": "^2.0.0",
|
|
|
|
"stylelint": "^14.6.1",
|
|
|
|
"stylelint-config-recommended-scss": "^6.0.0",
|
|
|
|
"stylelint-scss": "^4.2.0",
|
2020-02-17 16:39:54 +01:00
|
|
|
"svg-inline-loader": "^0.8.2",
|
2017-11-07 11:11:42 +01:00
|
|
|
"transform-loader": "^0.2.4",
|
2022-04-07 17:21:34 +02:00
|
|
|
"typescript": "^4.6.3",
|
|
|
|
"uuid": "^8.3.2",
|
|
|
|
"webdriverio": "^7.19.3",
|
|
|
|
"webpack": "^4.46.0",
|
|
|
|
"webpack-bundle-analyzer": "^4.5.0",
|
2017-11-07 12:05:30 +01:00
|
|
|
"webpack-cleanup-plugin": "^0.5.1",
|
2022-04-07 17:21:34 +02:00
|
|
|
"webpack-cli": "^4.9.2",
|
|
|
|
"webpack-dev-server": "^4.8.1"
|
2015-06-15 15:21:19 +02:00
|
|
|
}
|
|
|
|
}
|