maputnik/package.json

127 lines
3.5 KiB
JSON
Raw Normal View History

2015-06-15 15:21:19 +02:00
{
2016-09-20 13:51:54 +02:00
"name": "maputnik",
2017-01-10 19:14:06 +01:00
"version": "1.0.0",
"description": "A MapboxGL visual style editor",
2015-06-15 15:21:19 +02:00
"main": "''",
"scripts": {
2016-09-10 14:10:25 +02:00
"stats": "webpack --config webpack.production.config.js --profile --json > stats.json",
"build": "webpack --config webpack.production.config.js --progress --profile --colors",
2016-11-23 14:38:09 +01:00
"test": "karma start --single-run",
"test-watch": "karma start",
2016-12-04 17:03:36 +01:00
"start": "webpack-dev-server --progress --profile --colors --watch-poll",
2016-11-23 14:38:09 +01:00
"lint": "eslint --ext js --ext jsx {src,test}"
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": {
2017-01-11 09:35:48 +01:00
"classnames": "^2.2.5",
2016-12-25 13:19:33 +01:00
"codemirror": "^5.18.2",
2016-12-19 11:33:13 +01:00
"color": "^1.0.3",
2016-09-09 16:58:48 +02:00
"file-saver": "^1.3.2",
2016-12-28 16:48:49 +01:00
"lodash.capitalize": "^4.2.1",
"lodash.clonedeep": "^4.5.0",
2016-12-29 15:22:47 +01:00
"lodash.isequal": "^4.4.0",
"lodash.throttle": "^4.1.1",
"mapbox-gl": "^0.29.0",
"mapbox-gl-inspect": "^1.1.0",
"mapbox-gl-style-spec": "^8.11.0",
2016-12-23 17:17:02 +01:00
"mousetrap": "^1.6.0",
2017-01-10 12:04:19 +01:00
"ol-mapbox-style": "0.0.14",
"openlayers": "^3.19.1",
2016-09-09 18:53:57 +02:00
"randomcolor": "^0.4.4",
2016-11-23 16:04:00 +01:00
"react": "^15.4.0",
"react-addons-pure-render-mixin": "^15.4.0",
"react-autocomplete": "^1.4.0",
2016-12-22 15:27:58 +01:00
"react-codemirror": "^0.3.0",
2016-12-22 11:52:21 +01:00
"react-collapse": "^2.3.3",
2016-12-17 21:52:27 +01:00
"react-color": "^2.10.0",
2016-11-23 16:04:00 +01:00
"react-dom": "^15.4.0",
2016-09-08 20:35:21 +02:00
"react-file-reader-input": "^1.1.0",
2016-12-22 11:52:21 +01:00
"react-height": "^2.1.1",
2016-12-19 11:33:13 +01:00
"react-icon-base": "^2.0.4",
2016-09-08 19:47:29 +02:00
"react-icons": "^2.2.1",
2016-12-22 11:52:21 +01:00
"react-motion": "^0.4.7",
2016-12-17 19:58:30 +01:00
"react-sortable-hoc": "^0.4.5",
2017-01-01 14:49:32 +01:00
"reconnecting-websocket": "^3.0.3",
2017-01-05 19:34:32 +01:00
"request": "^2.79.0",
"url": "^0.11.0"
2015-06-15 15:21:19 +02:00
},
2016-09-09 11:29:18 +02:00
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
},
2016-09-08 19:47:29 +02:00
"jshintConfig": {
"esversion": 6
},
"eslintConfig": {
2016-09-20 18:10:57 +02:00
"plugins": [
"react"
],
2016-09-08 19:47:29 +02:00
"extend": [
"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": {
"babel-core": "6.14.0",
2016-09-20 18:10:57 +02:00
"babel-eslint": "^6.1.2",
2015-06-15 15:21:19 +02:00
"babel-loader": "6.2.4",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
2016-12-19 12:51:23 +01:00
"babel-plugin-transform-flow-strip-types": "^6.21.0",
2016-09-09 11:29:18 +02:00
"babel-plugin-transform-object-rest-spread": "^6.8.0",
2015-06-15 15:21:19 +02:00
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-runtime": "^6.11.6",
"css-loader": "0.25.0",
2016-09-20 18:10:57 +02:00
"eslint": "^3.5.0",
2016-09-09 11:29:18 +02:00
"eslint-plugin-react": "^6.2.0",
2015-06-15 15:21:19 +02:00
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "0.9.0",
"html-webpack-plugin": "^2.22.0",
2016-09-08 19:47:29 +02:00
"json-loader": "^0.5.4",
2016-11-23 14:38:09 +01:00
"karma": "^1.3.0",
2016-11-23 16:04:00 +01:00
"karma-chrome-launcher": "^2.0.0",
2016-11-23 16:33:03 +01:00
"karma-firefox-launcher": "^1.0.0",
2016-11-23 16:04:00 +01:00
"karma-mocha": "^1.3.0",
2016-11-23 14:38:09 +01:00
"karma-webpack": "^1.8.0",
2016-11-23 16:04:00 +01:00
"mocha": "^3.1.2",
"mocha-loader": "^1.0.0",
2016-11-23 14:38:09 +01:00
"node-sass": "^3.9.2",
2016-11-23 16:04:00 +01:00
"react-hot-loader": "^3.0.0-beta.6",
2016-11-23 14:38:09 +01:00
"sass-loader": "^4.0.1",
2015-06-15 15:21:19 +02:00
"style-loader": "0.13.1",
2016-09-08 19:47:29 +02:00
"transform-loader": "^0.2.3",
2015-06-15 15:21:19 +02:00
"url-loader": "0.5.7",
"webpack": "1.13.2",
"webpack-cleanup-plugin": "^0.3.0",
2016-09-08 19:47:29 +02:00
"webpack-dev-server": "1.15.1",
2016-09-10 16:05:04 +02:00
"webworkify-webpack": "^1.1.3"
2015-06-15 15:21:19 +02:00
}
}