-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.05 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "MapBoxEditor",
"version": "1.0.0",
"description": "An open source visual editor for the 'Mapbox Style Specification'",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --config config/webpack.dev.config.js --open ",
"build": "webpack --config config/webpack.prod.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StuRuby/MapBoxEditor.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/StuRuby/MapBoxEditor/issues"
},
"homepage": "https://github.com/StuRuby/MapBoxEditor#readme",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "0.0.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.10.0",
"progress-bar-webpack-plugin": "^1.11.0",
"raw-loader": "^1.0.0",
"react-hot-loader": "^4.3.12",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.25.1",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4",
"webpack-visualizer-plugin": "^0.1.11"
},
"dependencies": {
"@babel/runtime": "^7.1.5",
"@mapbox/mapbox-gl-rtl-text": "^0.2.1",
"@mapbox/mapbox-gl-style-spec": "^13.4.0",
"@rematch/core": "^1.0.6",
"axios": "^0.18.0",
"classnames": "^2.2.6",
"codemirror": "^5.42.0",
"color": "^3.1.0",
"compression-webpack-plugin": "^2.0.0",
"file-saver": "^2.0.0",
"immutable": "^4.0.0-rc.12",
"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.51.0",
"mapbox-gl-inspect": "^1.3.1",
"maputnik-design": "^0.1.0",
"prop-types": "^15.6.2",
"qs": "^6.6.0",
"react": "^16.8.1",
"react-aria-menubutton": "^6.1.0",
"react-aria-modal": "^3.0.1",
"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.8.1",
"react-file-reader-input": "^2.0.0",
"react-icon-base": "^2.1.2",
"react-icons": "^3.2.2",
"react-motion": "^0.5.2",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"react-sortable-hoc": "^0.8.4",
"slugify": "^1.3.4"
}
}