-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.75 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
{
"name": "hrforms2",
"version": "2.0.0",
"revision": "LOCAL-20250331",
"description": "HR Forms 2.0",
"main": "index.php",
"author": "Scott Geiger",
"license": "ISC",
"scripts": {
"build": "npm-run-all -s clean-dist -p build-html webpack -s update-changelog list",
"build-dev": "npm-run-all -s clean-js webpack-dev update-changelog update-buildtime list",
"webpack": "webpack --config ./webpack.config.js",
"webpack-dev": "webpack --mode development --config ./webpack.config.js",
"build-css": "sass --no-source-map src/scss/binghamton-bs4.scss | cleancss -o dist/htdocs/css/styles.min.css",
"build-html": "html-minifier -c conf/html-minifier.conf src/index.php -o dist/htdocs/index.php",
"clean-js": "rm -f dist/htdocs/js/*",
"clean-dist": "find dist/htdocs -type f -not -path \"*/api/*\" -delete",
"list": "find dist/htdocs -type f -not -path \"*/api/*\" -not -name \"*.LICENSE.txt\" -printf \"%Tb %Td %TH:%TM\\t%k\\t%p\\n\"",
"update-changelog": "cp CHANGELOG.md dist/htdocs",
"update-buildtime": "bt=$(date +%s); sed -i \"s/\\(BUILD_TIME',\\)[0-9]\\+\\(.*\\)/\\1$bt\\2/\" dist/etc/config.php"
},
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.12.13",
"@iconify/react": "^5.2.0",
"@types/react-router-dom": "^5.3.3",
"babel-loader": "^8.2.2",
"babel-plugin-lodash": "^3.3.4",
"css-loader": "^5.2.7",
"css-minimizer-webpack-plugin": "^3.4.1",
"file-loader": "^6.2.0",
"lodash-webpack-plugin": "^0.11.6",
"mini-css-extract-plugin": "^1.6.2",
"npm-run-all": "^4.1.5",
"sass": "^1.83.1",
"sass-loader": "^12.1.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.3.11",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@n8tb1t/use-scroll-position": "^2.0.3",
"@popperjs/core": "^2.11.7",
"@types/react-transition-group": "^4.4.5",
"bootstrap": "^4.6.2",
"htmr": "^1.0.0",
"jodit-react": "^4.1.2",
"lodash": "^4.17.21",
"react": "^17.0.1",
"react-beautiful-dnd": "^13.1.0",
"react-bootstrap": "^1.6.8",
"react-bootstrap-typeahead": "^6.1.2",
"react-checkbox-tree": "^1.7.3",
"react-cookie": "^7.2.2",
"react-csv": "^2.2.2",
"react-data-table-component": "^7.4.7",
"react-datepicker": "^7.6.0",
"react-dom": "^17.0.1",
"react-error-boundary": "^3.1.4",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.26.1",
"react-hotkeys-hook": "^3.4.4",
"react-markdown": "^8.0.7",
"react-phone-input-2": "^2.15.1",
"react-query": "^3.34.14",
"react-router-dom": "^5.3.4",
"react-slidedown": "^2.4.7",
"react-toastify": "^9.0.0",
"remark-gfm": "^3.0.1"
}
}