-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.2 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.2 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "homs",
"description": "Web application for order and business process management.",
"repository": "latera/homs",
"license": "Apache-2.0",
"scripts": {
"dev": "webpack --config config/webpack/development.js --mode development --watch",
"build": "webpack --config config/webpack/production.js --mode production",
"lint": "eslint 'app/javascript/**/*' 'hbw/app/javascript/**/*'",
"lint-fix": "eslint 'app/javascript/**/*' 'hbw/app/javascript/**/*' --fix",
"test": "jest --no-cache"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/runtime": "7.28.6",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.6",
"@rails/actioncable": "8.1.100",
"@types/uuid": "^11.0.0",
"babel-loader": "^10.1.1",
"bootstrap-multiselect": "0.9.13-1",
"bootstrap-sass": "^3.4.3",
"bootswatch": "3.4.1",
"classnames": "^2.5.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.4",
"date-fns": "^4.1.0",
"eonasdan-bootstrap-datetimepicker": "4.17.49",
"expose-loader": "^5.0.1",
"file-loader": "^6.2.0",
"i18n-js": "^4.5.3",
"jquery": "3.7.1",
"jquery-ujs": "1.2.3",
"jquery.growl": "1.3.1",
"lodash": "^4.17.23",
"mini-css-extract-plugin": "^2.10.0",
"moment": "2.30.1",
"non-digest-webpack-plugin": "^0.0.1",
"prop-types": "^15.8.1",
"qs": "^6.15.0",
"react": "^19.2.4",
"react-datepicker": "^8.10.0",
"react-dom": "^19.2.4",
"react-select": "^5.10.2",
"sass-embedded": "^1.96.0",
"sass-loader": "^16.0.6",
"select2": "^4.1.0-rc.0",
"select2-bootstrap-theme": "^0.1.0-beta.10",
"tooltip.js": "^1.3.3",
"url-polyfill": "^1.1.14",
"uuid": "^13.0.0",
"webpack": "^5.103.0",
"webpack-manifest-plugin": "^5.0.1",
"whatwg-fetch": "^3.6.20",
"yaml-loader": "^0.8.1"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/preset-env": "^7.29.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/babel__core": "^7.20.5",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^10.0.3",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-webpack-plugin": "^5.0.3",
"globals": "^16.5.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-junit": "^16.0.0",
"js-yaml": "^4.1.1",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack-cli": "^6.0.1"
},
"packageManager": "yarn@4.7.0"
}