2015-06-15 15:21:19 +02:00
|
|
|
{
|
2016-09-20 13:51:54 +02:00
|
|
|
"name": "maputnik",
|
2016-09-08 19:50:27 +02:00
|
|
|
"version": "0.0.1",
|
|
|
|
"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",
|
2015-06-15 15:21:19 +02:00
|
|
|
"build": "webpack --config webpack.production.config.js --progress --profile --colors",
|
|
|
|
"start": "webpack-dev-server --progress --profile --colors",
|
2016-09-08 19:47:29 +02:00
|
|
|
"lint": "eslint --ext js --ext jsx src"
|
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": {
|
2016-09-09 16:58:48 +02:00
|
|
|
"file-saver": "^1.3.2",
|
2016-09-10 00:43:41 +02:00
|
|
|
"immutable": "^3.8.1",
|
2016-09-08 21:42:18 +02:00
|
|
|
"mapbox-gl": "^0.23.0",
|
2016-09-09 00:10:54 +02:00
|
|
|
"mapbox-gl-style-spec": "^8.8.0",
|
2015-06-15 15:21:19 +02:00
|
|
|
"node-sass": "^3.9.2",
|
2016-09-09 18:53:57 +02:00
|
|
|
"randomcolor": "^0.4.4",
|
2016-09-09 00:55:50 +02:00
|
|
|
"react": "^15.3.0",
|
2016-09-19 21:29:30 +02:00
|
|
|
"react-addons-pure-render-mixin": "15.3.1",
|
2016-09-09 00:55:50 +02:00
|
|
|
"react-collapse": "^2.3.3",
|
2015-06-15 15:21:19 +02:00
|
|
|
"react-dom": "15.3.0",
|
2016-09-08 20:35:21 +02:00
|
|
|
"react-file-reader-input": "^1.1.0",
|
2016-09-09 00:55:50 +02:00
|
|
|
"react-height": "^2.1.1",
|
2016-09-08 19:47:29 +02:00
|
|
|
"react-icons": "^2.2.1",
|
2016-09-09 00:55:50 +02:00
|
|
|
"react-motion": "^0.4.4",
|
2016-09-08 19:47:29 +02:00
|
|
|
"rebass": "^0.3.1",
|
2015-06-15 15:21:19 +02:00
|
|
|
"sass-loader": "^4.0.1"
|
|
|
|
},
|
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-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",
|
2015-06-15 15:21:19 +02:00
|
|
|
"react-hot-loader": "1.3.0",
|
|
|
|
"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
|
|
|
}
|
|
|
|
}
|