-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.12 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
{
"name": "evaluation_system_web",
"version": "2411.0.0",
"description": "React-bits of the freva-web interface. The react-parts of the web interface include the plugin-selection, the data-browser and the result-browser",
"main": "index.js",
"engines": {
"npm": ">=8.19.0",
"node": ">=16.5.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint assets/js",
"lint-format": "prettier -l assets/js",
"dev": "webpack serve --config webpack.config.js",
"build": "webpack --config webpack.config.js --progress --color --mode=development",
"build-production": "webpack --config webpack.config.js --progress --color --mode=production"
},
"repository": {
"type": "git",
"url": "[email protected]:freva/freva_web.git"
},
"author": "Sebastian Illing",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24",
"@babel/eslint-parser": "7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"eslint": "^8",
"eslint-plugin-import": "2.29",
"eslint-plugin-promise": "6.1",
"eslint-plugin-react": "7.34",
"eslint-watch": "8",
"eslint-webpack-plugin": "3.1.0",
"json-loader": "^0.5.7",
"prettier": "3.2.5",
"react-hot-loader": "^4.13.1",
"style-loader": "^3.3.1",
"webpack": "^5.69",
"webpack-bundle-tracker": "^1.4.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "5.10.0"
},
"dependencies": {
"date-fns": "^2.29",
"isomorphic-fetch": "^3.0.0",
"linkify-react": "^3.0.4",
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"query-string": "^7.1.3",
"react": "^16.14.0",
"react-bootstrap": "^2.7.2",
"react-dom": "^16.14.0",
"react-html-parser": "^2.0.2",
"react-icons": "^4.3.1",
"react-nl2br": "^1.0.2",
"react-redux": "^7.2.6",
"react-router": "^3.2.6",
"react-table": "^7.7.0",
"react-window": "^1.8.8",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.1",
"react-select": "5.7.3"
}
}