-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
97 lines (97 loc) · 2.72 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
{
"name": "adhocracy4",
"version": "1.0.0",
"license": "AGPL-3.0+",
"description": "Frontend for Adhocracy4",
"author": {
"name": "Liquid Democracy e.V.",
"email": "info@liqd.de",
"url": "https://liqd.net"
},
"files": [
"index.js",
"adhocracy4"
],
"dependencies": {
"@popperjs/core": "2.11.8",
"file-saver": "2.0.5",
"js-cookie": "3.0.5",
"maplibregl-mapbox-request-transformer": "0.0.2"
},
"devDependencies": {
"@babel/eslint-parser": "7.22.15",
"@babel/plugin-transform-runtime": "7.23.2",
"@babel/preset-env": "7.23.2",
"@babel/preset-react": "7.22.15",
"@maplibre/maplibre-gl-leaflet": "0.0.20",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.0.0",
"eslint": "8.47.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-n": "16.0.2",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"esquery": "1.5.0",
"husky": "8.0.3",
"immutability-helper": "3.1.1",
"jest": "29.6.3",
"jest-environment-jsdom": "29.6.3",
"jquery": "3.7.0",
"leaflet": "1.9.4",
"leaflet-draw": "1.0.4",
"leaflet.markercluster": "git+https://github.com/liqd/Leaflet.markercluster#liqd2212",
"lint-staged": "13.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-flip-move": "3.0.5",
"react-markdown": "8.0.7",
"react-slick": "0.29.0",
"shpjs": "4.0.4"
},
"peerDependencies": {
"immutability-helper": "3.1.1",
"jquery": "3.7.0",
"js-cookie": "3.0.5",
"leaflet": "1.9.4",
"leaflet-draw": "1.0.4",
"leaflet.markercluster": "git+https://github.com/liqd/Leaflet.markercluster#liqd2212",
"maplibregl-mapbox-request-transformer": "0.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-flip-move": "3.0.5",
"react-markdown": "8.0.7",
"react-slick": "0.29",
"shpjs": "4.0.4",
"slick-carousel": "git+https://github.com/liqd/slick.git#pm-2019-07-overwrites"
},
"repository": {
"type": "git",
"url": "git@github.com:liqd/adhocracy4.git"
},
"scripts": {
"lint": "eslint adhocracy4 --ext .js,.jsx",
"lint-staged": "lint-staged",
"lint-fix": "eslint --fix --ext .js,.jsx .",
"prepare": "husky install",
"test": "jest",
"testDebug": "jest -o --coverage=false",
"testNoCov": "jest --coverage=false",
"updateSnapshots": "jest -u --coverage=false"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint"
],
"*.scss": [
"stylelint"
],
"*.py": [
"make lint-python-files"
]
}
}