This repository has been archived by the owner on Dec 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.15 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
{
"name": "a4-speakup",
"dependencies": {
"@babel/core": "7.9.6",
"@babel/plugin-transform-modules-commonjs": "7.9.6",
"@babel/plugin-transform-runtime": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/preset-react": "7.9.4",
"@babel/runtime": "7.9.6",
"@fortawesome/fontawesome-free": "5.13.0",
"acorn": "7.2.0",
"adhocracy4": "liqd/adhocracy4#speakup-v1.3",
"axios": "0.19.2",
"babel-loader": "8.1.0",
"bootstrap": "4.5.0",
"copy-webpack-plugin": "5.1.1",
"css-loader": "3.5.3",
"datepicker": "git+https://github.com/liqd/datePicker.git",
"feature-detect": "1.0.0",
"file-loader": "6.0.0",
"file-saver": "2.0.2",
"immutability-helper": "3.0.2",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.14.1",
"popper.js": "1.16.1",
"react-flip-move": "3.0.4",
"react-sticky-box": "0.9.3",
"sass-loader": "8.0.2",
"sass-planifolia": "0.6.0",
"select2": "4.0.13",
"shpjs": "3.4.3",
"style-loader": "1.2.1",
"tether": "1.4.7",
"timeago.js": "4.0.2",
"webpack": "4.43.0",
"webpack-merge": "4.2.2"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "7.1.0",
"eslint-config-standard": "14.1.1",
"eslint-config-standard-jsx": "8.1.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-standard": "4.0.1",
"husky": "4.2.5",
"markdownlint-cli": "0.23.1",
"stylelint": "13.5.0",
"stylelint-config-standard": "20.0.0",
"stylelint-declaration-strict-value": "1.5.0",
"webpack-cli": "3.3.11"
},
"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 apps a4-speakup/assets --ext .js,.jsx && stylelint 'a4-speakup/assets/scss/**/*.scss' --syntax scss"
},
"browserslist": "last 3 versions, ie >= 10",
"husky": {
"hooks": {
"pre-commit": "make lint"
}
}
}