-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 KB
/
package.json
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
{
"name": "@farmos.org/farmos-map",
"version": "2.3.0",
"description": "OpenLayers map used in farmOS.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/farmOS/farmOS-map.git"
},
"main": "src/index.js",
"scripts": {
"lint": "eslint src && stylelint 'src/**/*.css'",
"build": "npm run lint && webpack --config webpack.config.js --mode production",
"dev": "webpack-dev-server --host 0.0.0.0 --progress --config webpack.config.js --mode development"
},
"devDependencies": {
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^3.6.0",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"mini-css-extract-plugin": "^1.6.0",
"style-loader": "^0.23.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"svg-inline-loader": "^0.8.2",
"webpack": "^5.36.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.0.0-beta.2"
},
"dependencies": {
"bootstrap-icons": "^1.5.0",
"ol": "^6.14.1",
"ol-geocoder": "^4.3.1",
"ol-grid": "^1.1.7",
"ol-layerswitcher": "^3.7.0",
"ol-popup": "^4.0.0",
"ol-side-panel": "^1.0.6"
}
}