-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
84 lines (84 loc) · 2.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
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
{
"name": "adhocracy4",
"version": "1.0.0",
"license": "AGPL-3.0+",
"description": "Frontend for Adhocracy4",
"author": {
"name": "Liquid Democracy e.V.",
"email": "[email protected]",
"url": "https://liqd.net"
},
"files": [
"index.js",
"adhocracy4"
],
"dependencies": {
"@popperjs/core": "2.11.8",
"@turf/turf": "7.1.0",
"file-saver": "2.0.5",
"immutability-helper": "3.1.1",
"jquery": "3.7.1",
"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.3.1",
"react-dom": "18.3.1",
"react-flip-move": "3.0.5",
"react-leaflet": "4.2.1",
"react-markdown": "9.0.1",
"react-slick": "0.30.3",
"shpjs": "6.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@maplibre/maplibre-gl-leaflet": "0.0.22",
"@react-leaflet/core": "2.1.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "4.6.2",
"esquery": "1.6.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.3.0"
},
"repository": {
"type": "git",
"url": "[email protected]:liqd/adhocracy4.git"
},
"scripts": {
"lint": "eslint adhocracy4 --ext .js,.jsx",
"lint-staged": "lint-staged",
"lint-fix": "eslint --fix --ext .js,.jsx .",
"prepare": "husky",
"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"
]
}
}