-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
80 lines (80 loc) · 2.76 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
{
"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.7",
"@types/jquery": "^3.5.32",
"@types/lodash-es": "^4.17.12",
"@types/react": "^19.0.8",
"@types/react-big-calendar": "^1.16.1",
"@types/react-dom": "^19.0.3",
"bootstrap-sass": "^3.4.3",
"classnames": "^2.5.1",
"css-loader": "^7.1.2",
"dayjs": "^1.11.13",
"file-saver": "^2.0.5",
"imports-loader": "^5.0.0",
"jquery": "^3.7.1",
"lodash-es": "^4.17.21",
"mini-css-extract-plugin": "^2.9.2",
"react": "^19.0.0",
"react-big-calendar": "^1.17.1",
"react-dom": "^19.0.0",
"sass": "^1.83.4",
"sass-loader": "^16.0.4",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.24.1",
"@eslint/js": "^9.19.0",
"eslint": "^9.19.0",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-escompat": "^3.11.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript-eslint": "^8.21.0"
},
"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": {
"plugins": [
"prettier-plugin-organize-imports"
],
"experimentalTernaries": true,
"proseWrap": "always",
"quoteProps": "preserve"
},
"pnpm": {
"overrides": {
"react-big-calendar>globalize": "-",
"react-big-calendar>lodash": "npm:lodash-es@^4",
"react-big-calendar>luxon": "-",
"react-big-calendar>moment": "-",
"react-big-calendar>moment-timezone": "-"
},
"peerDependencyRules": {
"allowedVersions": {
"react-big-calendar>react": "19",
"react-big-calendar>react-dom": "19"
}
}
},
"packageManager": "[email protected]+sha512.b8fef5494bd3fe4cbd4edabd0745df2ee5be3e4b0b8b08fa643aa3e4c6702ccc0f00d68fa8a8c9858a735a0032485a44990ed2810526c875e416f001b17df12b"
}