This repository has been archived by the owner on Feb 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.06 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
{
"name": "civic_europe",
"version": "0.10.0-release.1",
"license": "AGPL-3.0+",
"description": "Frontend for Civic Europe",
"author": {
"name": "Liquid Democracy e.V.",
"email": "[email protected]",
"url": "https://liqd.net"
},
"dependencies": {
"@babel/core": "7.17.9",
"@babel/plugin-transform-modules-commonjs": "7.17.9",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/runtime": "7.17.9",
"@fortawesome/fontawesome-free": "5.15.4",
"adhocracy4": "github:liqd/adhocracy4#ce-v2204.1",
"autoprefixer": "10.4.7",
"babel-loader": "8.2.5",
"bootstrap": "4.6.1",
"classnames": "2.3.1",
"copy-webpack-plugin": "10.2.4",
"css-loader": "6.7.1",
"file-loader": "6.2.0",
"jquery": "3.6.0",
"js-cookie": "3.0.1",
"mapbox-gl": "1.13.2",
"mapbox-gl-leaflet": "0.0.15",
"mini-css-extract-plugin": "2.6.0",
"node-sass": "7.0.1",
"popper.js": "1.16.1",
"postcss-loader": "6.2.1",
"react": "17.0.2",
"react-addons-update": "15.6.3",
"react-dom": "17.0.2",
"react-flip-move": "3.0.4",
"sass-loader": "12.6.0",
"slick-carousel": "1.8.1",
"style-loader": "3.3.1",
"terser-webpack-plugin": "3.1.0",
"webpack": "5.70.0",
"webpack-cli": "4.9.2",
"webpack-merge": "5.8.0"
},
"devDependencies": {
"husky": "7.0.4",
"postcss": "8.4.14",
"standard": "16.0.4",
"stylelint": "14.8.2",
"stylelint-config-standard-scss": "3.0.0",
"stylelint-declaration-strict-value": "1.8.0"
},
"scripts": {
"build:prod": "webpack --config ./webpack.prod.js --mode production",
"build": "webpack --config ./webpack.dev.js --progress --mode development",
"watch": "webpack --config ./webpack.dev.js --progress --color --watch --mode development",
"lint": "standard '{apps,cms,civic_europe}/**/*.{js,jsx}' && stylelint 'civic_europe/assets/scss/**/*.scss'"
},
"browserslist": "last 3 versions, ie >= 11",
"husky": {
"hooks": {
"pre-commit": "make lint"
}
}
}