-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
49 lines (49 loc) · 1.54 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
{
"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": "^4.14.191",
"@types/react": "^18.0.26",
"@types/react-big-calendar": "^0.38.3",
"@types/react-dom": "^18.0.10",
"bootstrap-sass": "^3.4.3",
"classnames": "^2.3.2",
"css-loader": "^6.7.1",
"file-saver": "^2.0.5",
"imports-loader": "^4.0.1",
"jquery": "^3.6.1",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.6.1",
"moment": "^2.29.4",
"prettier": "2.8.1",
"prettier-plugin-organize-imports": "^3.2.1",
"react": "^18.2.0",
"react-big-calendar": "^1.5.0",
"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"
},
"scripts": {
"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, not dead",
"prettier": {
"proseWrap": "always",
"quoteProps": "preserve"
}
}