-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
70 lines (70 loc) · 2.74 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
{
"name": "votr",
"version": "0.0.0",
"repository": "https://github.com/fmfi-svt/votr",
"license": "Apache-2.0",
"private": true,
"dependencies": {
"@types/bootstrap": "^3.4.0",
"@types/file-saver": "^2.0.5",
"@types/jquery": "^3.5.14",
"@types/lodash-es": "^4.17.7",
"@types/react": "^18.0.26",
"@types/react-big-calendar": "^1.6.3",
"@types/react-dom": "^18.0.10",
"bootstrap-sass": "^3.4.3",
"classnames": "^2.3.2",
"css-loader": "^6.7.1",
"dayjs": "^1.11.7",
"file-saver": "^2.0.5",
"imports-loader": "^4.0.1",
"jquery": "^3.6.1",
"lodash-es": "^4.17.21",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "2.8.1",
"prettier-plugin-organize-imports": "^3.2.1",
"react": "^18.2.0",
"react-big-calendar": "^1.6.9",
"react-dom": "^18.2.0",
"sass": "^1.54.9",
"sass-loader": "^13.0.2",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-plugin-compat": "^4.1.4",
"eslint-plugin-escompat": "^3.4.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0"
},
"resolutions": {
"array-includes": "file:./votrfront/overrides/array-includes",
"array.prototype.flatmap": "file:./votrfront/overrides/array.prototype.flatmap",
"array.prototype.tosorted": "file:./votrfront/overrides/array.prototype.tosorted",
"object.assign": "file:./votrfront/overrides/object.assign",
"object.entries": "file:./votrfront/overrides/object.entries",
"object.fromentries": "file:./votrfront/overrides/object.fromentries",
"object.hasown": "file:./votrfront/overrides/object.hasown",
"object.values": "file:./votrfront/overrides/object.values",
"string.prototype.matchall": "file:./votrfront/overrides/string.prototype.matchall"
},
"scripts": {
"lint": "echo Running prettier; prettier --check .; echo Running eslint; eslint .; echo Running tsc; tsc --noEmit",
"builddev": "webpack --mode=development --progress --stats=minimal",
"buildprod": "webpack --mode=production --progress --stats=minimal",
"watch": "webpack --mode=development --progress --stats=minimal --watch",
"buildboth": "$npm_execpath run builddev && $npm_execpath run buildprod && echo ok_both > votrfront/static/status",
"clean": "rm -rf votrfront/static",
"distclean": "rm -rf votrfront/static node_modules"
},
"browserslist": "defaults, since 2020, Chrome >= 73, Edge >= 79, Firefox >= 63, Opera >= 60, Safari >= 12.1, iOS >= 12.2, not OperaMini all, not dead",
"prettier": {
"proseWrap": "always",
"quoteProps": "preserve"
}
}