maputnik/package.json

147 lines
4.3 KiB
JSON
Raw Normal View History

2015-06-15 15:21:19 +02:00
{
2016-09-20 13:51:54 +02:00
"name": "maputnik",
2018-09-10 14:18:21 +02:00
"version": "1.5.0",
"description": "A MapboxGL visual style editor",
2015-06-15 15:21:19 +02:00
"main": "''",
"scripts": {
2017-04-04 16:51:30 +02:00
"stats": "webpack --config config/webpack.production.config.js --profile --json > stats.json",
"build": "webpack --config config/webpack.production.config.js --progress --profile --colors",
2018-01-17 17:53:42 +01:00
"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",
2018-10-06 22:21:42 +02:00
"lint": "eslint --ext js --ext jsx src test",
2019-04-14 10:05:15 +02:00
"lint-styles": "stylelint \"src/styles/*.scss\""
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
},
"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": {
2018-10-06 22:05:33 +02:00
"@babel/runtime": "^7.1.2",
2018-10-06 17:01:34 +02:00
"@mapbox/mapbox-gl-rtl-text": "^0.2.1",
"@mapbox/mapbox-gl-style-spec": "^13.6.0",
2018-10-06 17:01:34 +02:00
"classnames": "^2.2.6",
"codemirror": "^5.40.2",
2018-04-17 11:45:24 +02:00
"color": "^3.0.0",
"detect-browser": "^4.5.0",
2018-04-17 11:45:24 +02:00
"file-saver": "^1.3.8",
2017-11-07 11:11:42 +01:00
"jsonlint": "github:josdejong/jsonlint#85a19d7",
2016-12-28 16:48:49 +01:00
"lodash.capitalize": "^4.2.1",
"lodash.clamp": "^4.0.3",
"lodash.clonedeep": "^4.5.0",
2017-11-07 11:11:42 +01:00
"lodash.isequal": "^4.5.0",
"lodash.throttle": "^4.1.1",
"mapbox-gl": "^0.53.1",
2018-04-13 14:24:39 +02:00
"mapbox-gl-inspect": "^1.3.1",
"maputnik-design": "github:maputnik/design",
"ol": "^6.0.0-beta.8",
"ol-mapbox-style": "^5.0.0-beta.2",
2018-10-06 17:01:34 +02:00
"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",
2018-10-06 17:01:34 +02:00
"react-autocomplete": "^1.8.1",
"react-codemirror2": "^5.1.0",
"react-collapse": "^4.0.3",
2018-04-17 11:45:24 +02:00
"react-color": "^2.14.1",
2018-10-06 17:01:34 +02:00
"react-dom": "^16.5.2",
"react-file-reader-input": "^2.0.0",
"react-icon-base": "^2.1.2",
2018-10-06 17:06:21 +02:00
"react-icons": "^3.1.0",
2017-11-07 11:11:42 +01:00
"react-motion": "^0.5.2",
2018-10-06 17:01:34 +02:00
"react-sortable-hoc": "^0.8.3",
2017-11-07 11:11:42 +01:00
"reconnecting-websocket": "^3.2.2",
2018-10-23 13:04:23 +02:00
"slugify": "^1.3.1",
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": {
"extends": "stylelint-config-recommended-scss",
"rules": {
"no-descending-specificity": null,
"media-feature-name-no-unknown": [
true,
{
"ignoreMediaFeatureNames": [
"prefers-reduced-motion"
]
}
]
}
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
},
2016-09-20 18:10:57 +02:00
"parser": "babel-eslint",
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
}
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": {
2018-10-06 22:05:33 +02:00
"@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",
2018-10-06 22:21:42 +02:00
"babel-plugin-istanbul": "^5.0.1",
2018-10-06 22:05:33 +02:00
"copy-webpack-plugin": "^4.5.2",
"cors": "^2.8.4",
2018-10-06 17:44:23 +02:00
"cross-env": "^5.2.0",
2018-10-06 22:05:33 +02:00
"css-loader": "^1.0.0",
2018-10-06 22:21:42 +02:00
"eslint": "^5.6.1",
"eslint-plugin-react": "^7.11.1",
2018-04-17 11:45:24 +02:00
"express": "^4.16.3",
2018-10-06 22:05:33 +02:00
"file-loader": "^2.0.0",
2018-04-17 11:45:24 +02:00
"html-webpack-plugin": "^3.2.0",
"is-docker": "^1.1.0",
"istanbul": "^0.4.5",
2018-10-06 22:05:33 +02:00
"istanbul-lib-coverage": "^2.0.1",
"mkdirp": "^0.5.1",
2018-10-06 17:44:23 +02:00
"mocha": "^5.2.0",
2018-11-18 19:23:06 +01:00
"node-sass": "^4.10.0",
"raw-loader": "^0.5.1",
2018-10-06 22:05:33 +02:00
"react-hot-loader": "^4.3.11",
"sass-loader": "^7.1.0",
"selenium-standalone": "^6.15.3",
"style-loader": "^0.23.0",
"stylelint": "^10.0.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.5.4",
2017-11-07 11:11:42 +01:00
"transform-loader": "^0.2.4",
2018-10-06 17:44:23 +02:00
"uuid": "^3.3.2",
2018-11-17 13:48:17 +01:00
"wdio-mocha-framework": "^0.6.4",
2018-04-17 11:45:24 +02:00
"wdio-selenium-standalone-service": "0.0.10",
2018-10-06 22:05:33 +02:00
"wdio-spec-reporter": "^0.1.5",
"webdriverio": "^4.13.2",
"webpack": "^4.20.2",
"webpack-bundle-analyzer": "^3.0.2",
2017-11-07 12:05:30 +01:00
"webpack-cleanup-plugin": "^0.5.1",
2018-10-06 22:05:33 +02:00
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
2015-06-15 15:21:19 +02:00
}
}