-
Notifications
You must be signed in to change notification settings - Fork 245
/
Copy pathpackage.json
91 lines (91 loc) · 3.04 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "MarkUs",
"dependencies": {
"@babel/runtime": "^7.26.0",
"@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.2",
"@rails/actioncable": "^7.2.200",
"@rails/ujs": "^7.1.3-4",
"@rjsf/core": "^5.23.2",
"@rjsf/validator-ajv8": "^5.23.2",
"chart.js": "^4.4.6",
"core-js": "^3.39.0",
"dayjs": "^1.11.13",
"dompurify": "^3.2.3",
"flatpickr": "^4.6.13",
"heic2any": "^0.0.4",
"i18n-js": "^4.5.1",
"jcrop": "^0.0.1",
"jquery": "^3.7.1",
"jquery-ui": "^1.14.1",
"marked": "^15.0.3",
"mathjax": "^3.2.2",
"mime": "^4.0.6",
"mousetrap": "^1.6.5",
"pdfjs-dist": "^4.8.69",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-flatpickr": "^3.10.13",
"react-keyed-file-browser": "^1.14.0",
"react-modal": "^3.16.1",
"react-table": "^6.11.5",
"react-tabs": "^6.1.0",
"tslib": "^2.8.1",
"ui-contextmenu": "^1.18.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.5.2",
"babel-jest": "^29.4.3",
"babel-loader": "^9.2.1",
"babel-plugin-prismjs": "^2.1.0",
"css-loader": "^7.1.2",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jsdom-worker": "^0.3.0",
"mini-css-extract-plugin": "^2.9.2",
"sass": "^1.79.4",
"sass-loader": "^16.0.4",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1"
},
"browserslist": [
"defaults"
],
"scripts": {
"build": "node_modules/.bin/webpack --progress --config webpack.production.js",
"build-dev": "node_modules/.bin/webpack --progress --config webpack.development.js",
"build:css": "sass ./app/assets/stylesheets/entrypoints:./app/assets/builds/ --no-source-map --load-path=node_modules --load-path=./app/assets/stylesheets --load-path=./vendor/assets/stylesheets --style=compressed",
"build-dev:css": "sass ./app/assets/stylesheets/entrypoints:./app/assets/builds/ --watch --load-path=node_modules --load-path=./app/assets/stylesheets --load-path=./vendor/assets/stylesheets",
"test": "node_modules/.bin/jest --no-cache",
"test-cov": "node_modules/.bin/jest --no-cache --collect-coverage"
},
"overrides": {
"react-keyed-file-browser": {
"react": "^18.3.1",
"classnames": "^2.5.1",
"date-fns": "^3.3.1",
"prop-types": "^15.8.1",
"react-dnd-html5-backend": "^16.0.1"
},
"react-table": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}
}