-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
120 lines (120 loc) · 3.76 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
117
118
119
120
{
"name": "a4-meinberlin",
"version": "2.1.0",
"license": "AGPL-3.0+",
"description": "Frontend for meinBerlin",
"author": {
"name": "Liquid Democracy e.V.",
"email": "[email protected]",
"url": "https://liqd.net"
},
"files": [
"meinberlin"
],
"repository": "https://github.com/liqd/a4-meinberlin.git",
"dependencies": {
"@fortawesome/fontawesome-free": "6.5.1",
"@maplibre/maplibre-gl-leaflet": "0.0.21",
"@react-leaflet/core": "^2.1.0",
"acorn": "8.12.0",
"adhocracy4": "liqd/adhocracy4#69c811feb292cd2a2bfacdccd1a3ded61ed9e34a",
"autoprefixer": "10.4.19",
"bootstrap": "5.2.3",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.2",
"datepicker": "git+https://github.com/liqd/datePicker.git",
"dsgvo-video-embed": "liqd/dsgvo-video-embed#main",
"es6-promise": "4.2.8",
"file-saver": "2.0.5",
"flatpickr": "4.6.13",
"immutability-helper": "3.1.1",
"jquery": "3.7.1",
"js-cookie": "3.0.5",
"kleur": "4.1.5",
"leaflet": "1.9.4",
"leaflet-draw": "1.0.4",
"leaflet.markercluster": "github:liqd/Leaflet.markercluster#liqd2212",
"maplibre-gl": "2.4.0",
"maplibregl-mapbox-request-transformer": "0.0.2",
"mini-css-extract-plugin": "2.9.0",
"path-browserify": "1.0.1",
"postcss-loader": "8.1.1",
"react": "18.3.1",
"react-bootstrap-typeahead": "6.3.2",
"react-cookie": "7.1.4",
"react-dom": "18.3.1",
"react-flip-move": "3.0.5",
"react-leaflet": "^4.2.1",
"react-markdown": "9.0.1",
"react-router-dom": "6.24.0",
"react-slick": "0.30.2",
"react-sticky-box": "2.0.5",
"sass": "1.77.6",
"sass-loader": "14.2.1",
"select2": "4.0.13",
"shariff": "3.3.0",
"shpjs": "5.0.1",
"slick-carousel": "github:liqd/slick#pm-2019-07-overwrites",
"swiper": "11.1.4",
"timeago.js": "4.0.2"
},
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/eslint-parser": "7.24.7",
"@babel/eslint-plugin": "7.24.7",
"@babel/plugin-transform-modules-commonjs": "7.24.7",
"@babel/plugin-transform-runtime": "7.24.7",
"@babel/preset-env": "7.24.7",
"@babel/preset-react": "7.24.7",
"@testing-library/react": "14.3.1",
"babel-loader": "9.1.3",
"eslint": "8.57.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-promise": "6.2.0",
"eslint-plugin-react": "7.34.3",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.2",
"postcss": "8.4.38",
"stylelint": "16.2.1",
"stylelint-config-standard-scss": "13.0.0",
"stylelint-declaration-strict-value": "1.10.4",
"webpack": "5.94.0",
"webpack-cli": "5.1.4",
"webpack-merge": "5.10.0",
"whatwg-fetch": "3.6.20"
},
"scripts": {
"build:prod": "webpack --config webpack.prod.js --mode production",
"build": "webpack --config webpack.dev.js --mode development",
"watch": "webpack --config webpack.dev.js --watch --mode development",
"lint": "eslint meinberlin/apps meinberlin/assets --ext .js,.jsx && stylelint 'meinberlin/assets/scss/**/*.scss'",
"lint-staged": "lint-staged",
"lint-fix": "eslint meinberlin/apps meinberlin/assets --fix --ext .js,.jsx",
"postinstall": "husky",
"test": "jest",
"testDebug": "jest -o --coverage=false",
"testNoCov": "jest --coverage=false",
"updateSnapshots": "jest -u --coverage=false"
},
"browserslist": "last 3 versions, ie >= 11",
"lint-staged": {
"*.{js,jsx}": [
"eslint"
],
"*.scss": [
"stylelint"
],
"*.html": [
"make lint-html-files"
],
"*.py": [
"make lint-python-files"
]
}
}