-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.24 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "wahlkarte",
"version": "1.0.0",
"description": "Visualisation of Offene Wahldaten election result data using Leaflet and Tangram",
"homepage": "https://github.com/fhswf/wahlkarte",
"browser": "src/js/app.js",
"scripts": {
"build": "webpack --config webpack.config.prod.js",
"lint:js": "./node_modules/.bin/eslint src/js/*.js",
"flow": "flow",
"flow-typed": "flow-typed",
"lint:styles": "stylelint \"src/**/*.scss\"",
"lint:html": "pa11y-ci ./src/**/*.html",
"start:dev": "webpack serve --config webpack.config.dev.js",
"start": "webpack --config webpack.config.prod.js && http-server ./dist -o",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fhswf/wahlkarte.git"
},
"author": "Kevin Arutyunyan <[email protected]> (https://d3d9.xyz/)",
"license": "MPL-2.0",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-plugin-flowtype": "^6.1.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^36.1.0",
"flow-bin": "^0.160.2",
"flow-typed": "^3.3.1",
"http-server": "^13.0.2",
"pa11y-ci": "^2.4.2",
"patch-package": "^6.4.7",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"webpack-dev-server": "^4.3.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"Firefox ESR",
"not dead",
"not ie 11",
"not ie_mob 11",
"not op_mini all"
],
"dependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.7",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.4",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-flow": "^7.14.5",
"@turf/dissolve": "^6.5.0",
"@turf/flatten": "^6.5.0",
"@turf/meta": "^6.5.0",
"autoprefixer": "^10.3.5",
"babel-loader": "^8.2.2",
"browserslist": "^4.17.1",
"chart.js": "^3.5.1",
"chroma-js": "^2.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.3.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"cssnano": "^5.0.8",
"csvtojson": "^2.0.10",
"fibers": "^5.0.0",
"file-loader": "^6.2.0",
"geostats": "^2.0.0",
"glob": "^7.2.0",
"html-webpack-plugin": "^5.3.2",
"ky": "^0.28.5",
"leaflet": "^1.7.1",
"lit": "^2.8.0",
"mini-css-extract-plugin": "^2.3.0",
"node-sass": "^6.0.1",
"postcss": "^8.3.8",
"postcss-loader": "^6.1.1",
"raw-loader": "^4.0.2",
"sass": "^1.42.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.3.0",
"tangram": "^0.21.1",
"webpack": "^5.91.0",
"webpack-cli": "^4.8.0",
"webpack-merge": "^5.8.0",
"weightless": "0.0.37"
},
"overrides": {
"weightless": {
"lit": "^2.8.0"
}
},
"sideEffects": [
"**/*.css",
"**/*.scss",
"./src/js/app.js",
"./src/js/interface/*.js"
],
"madge": {
"includeNpm": false,
"webpackConfig": "./webpack.config.common.js",
"rankdir": "TB",
"backgroundColor": "#ffffff",
"nodeColor": "#000000",
"noDependencyColor": "#666666",
"detectiveOptions": {
"es6": {
"skipTypeImports": true
}
}
}
}