-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.64 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
{
"name": "adhocracy-plus",
"version": "1.0.0-dev.1",
"license": "AGPL-3.0+",
"author": {
"name": "Liquid Democracy e.V.",
"email": "info@liqd.net",
"url": "https://liqd.net"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"adhocracy-plus"
],
"repository": "https://github.com/liqd/adhocracy-plus.git",
"dependencies": {
"@fortawesome/fontawesome-free": "5.15.4",
"@maplibre/maplibre-gl-leaflet": "0.0.19",
"adhocracy4": "git+https://github.com/liqd/adhocracy4#d193b1c4c8ff3edab443fc3882d0dfc2be7d9acd",
"autoprefixer": "10.4.14",
"bootstrap": "5.2.3",
"css-loader": "6.8.1",
"datepicker": "git+https://github.com/liqd/datePicker.git",
"dsgvo-video-embed": "git+https://github.com/liqd/dsgvo-video-embed.git",
"file-saver": "2.0.5",
"glob": "10.2.7",
"immutability-helper": "3.1.1",
"jquery": "3.7.0",
"js-cookie": "3.0.5",
"kleur": "4.1.5",
"leaflet": "1.9.4",
"leaflet-draw": "1.0.4",
"leaflet.markercluster": "git+https://github.com/liqd/Leaflet.markercluster#liqd2212",
"maplibre-gl": "2.4.0",
"maplibregl-mapbox-request-transformer": "0.0.2",
"mini-css-extract-plugin": "2.7.6",
"path-browserify": "1.0.1",
"postcss-loader": "7.3.3",
"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",
"sass": "1.63.4",
"sass-loader": "13.3.2",
"select2": "4.0.13",
"shpjs": "4.0.4",
"slick-carousel": "git+https://github.com/liqd/slick#pm-2019-07-overwrites",
"terser-webpack-plugin": "5.3.9",
"timeago.js": "4.0.2"
},
"devDependencies": {
"@babel/core": "7.22.5",
"@babel/eslint-parser": "7.22.5",
"@babel/plugin-transform-modules-commonjs": "7.22.5",
"@babel/plugin-transform-runtime": "7.22.5",
"@babel/preset-env": "7.22.5",
"@babel/preset-react": "7.22.5",
"@babel/runtime": "7.22.5",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"babel-loader": "9.1.2",
"copy-webpack-plugin": "11.0.0",
"eslint": "8.41.0",
"eslint-config-standard": "17.0.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.32.2",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"lint-staged": "13.2.2",
"postcss": "8.4.24",
"stylelint": "15.7.0",
"stylelint-config-standard-scss": "9.0.0",
"stylelint-declaration-strict-value": "1.9.2",
"webpack": "5.86.0",
"webpack-cli": "5.1.4",
"webpack-merge": "5.9.0"
},
"scripts": {
"build:prod": "webpack --config webpack.prod.js",
"build": "webpack --config webpack.dev.js",
"watch": "webpack --config webpack.dev.js --watch",
"lint": "eslint apps adhocracy-plus/assets --ext .js,.jsx && stylelint 'adhocracy-plus/assets/scss/**/*.scss'",
"lint-staged": "lint-staged",
"lint-fix": "eslint --fix --ext .js,.jsx .",
"postinstall": "husky install",
"test": "jest --passWithNoTests",
"testDebug": "jest -o --coverage=false",
"testNoCov": "jest --coverage=false",
"updateSnapshots": "jest -u --coverage=false",
"coverageTest": "jest --passWithNoTests --silent --ci --coverage --testLocationInResults --json --outputFile=report.json"
},
"browserslist": "defaults and not dead and >= 0.5%, ie >= 11",
"lint-staged": {
"*.{js,jsx}": [
"eslint"
],
"*.scss": [
"stylelint"
],
"*.py": [
"make lint-python-files"
]
}
}