-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 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
{
"name": "rdmo",
"scripts": {
"build:dist": "webpack --config webpack.config.js --mode production --env ignore-perf --fail-on-warnings",
"build:prod": "webpack --config webpack.config.js --mode production",
"build": "webpack --config webpack.config.js --mode development",
"watch": "webpack --config webpack.config.js --mode development --watch",
"lint": "eslint --ext .js rdmo/"
},
"author": "RDMO Arbeitsgemeinschaft <rdmorganiser.github.io>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/rdmorganiser/rdmo"
},
"engines": {
"node": "22.22.x",
"npm": "10.x"
},
"dependencies": {
"@codemirror/lang-html": "^6.4.2",
"@codemirror/lang-javascript": "^6.2.2",
"@uiw/react-codemirror": "^4.25.1",
"bootstrap-sass": "^3.4.1",
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"font-awesome": "4.7.0",
"html-to-text": "^9.0.5",
"jquery": "^3.7.1",
"js-cookie": "^3.0.5",
"lodash": "^4.17.23",
"popper.js": "^1.16.1",
"prop-types": "^15.7.2",
"react": "^18.3.1",
"react-bootstrap": "0.33.1",
"react-datepicker": "8.10.0",
"react-diff-viewer-continued": "^3.4.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.8",
"react-redux": "^8.1.3",
"react-select": "^5.10.2",
"redux": "^4.1.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"use-debounce": "^10.0.0"
},
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.28.5",
"babel-loader": "^10.0.0",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.1",
"eslint": "~8.56.0",
"eslint-plugin-react": "^7.37.2",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.9.0",
"sass": "^1.94.2",
"sass-loader": "^16.0.0",
"webpack": "^5.105.0",
"webpack-cli": "^6.0.1",
"webpack-merge": "6.0.1"
}
}