-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.07 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.07 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
{
"name": "mepp",
"version": "2.x.x",
"private": false,
"description": "mepp",
"scripts": {
"setup": "npm install --legacy-peer-deps",
"start": "cross-env NODE_ENV=development ENV=dev webpack-dev-server --port 8080 --client-web-socket-url-hostname mepp.local --client-web-socket-url-port 9090 --open-target http://mepp.local:9090",
"staging": "cross-env NODE_ENV=production ENV=staging webpack",
"prod": "cross-env NODE_ENV=production ENV=production webpack",
"build": "cross-env NODE_ENV=production ENV=production webpack",
"lint": "eslint --fix --ext .js,.jsx ./",
"format": "prettier --write \"**/*.(jsx|js)\""
},
"engines": {
"node": ">=16.17.0"
},
"dependencies": {
"@mui/styles": "5.11.16",
"axios": "^1.7.2",
"date-fns": "^2.23.0",
"deepar": "^5.2.0",
"detect-browser": "^5.3.0",
"focus-trap-react": "^8.7.1",
"i18next": "^19.8.4",
"i18next-browser-languagedetector": "^6.0.1",
"lil-gui": "^0.18.2",
"ra-compact-ui": "2.0.0-beta",
"ra-data-django-rest-framework": "git://github.com/navivanuva/ra-data-django-rest-framework-v4.git",
"ra-i18n-polyglot": "^4.9.1",
"ra-language-english": "^4.9.1",
"ra-language-french": "^4.9.1",
"ra-language-german": "^3.13.5",
"ra-language-italian": "^3.13.1",
"ra-language-portuguese": "^1.6.0",
"ra-language-spanish": "^1.0.0",
"react": "18.2.0",
"react-admin": "4.16",
"react-dom": "18.2.0",
"react-hook-form": "^7.12.2",
"react-hot-loader": "4.12.19",
"react-i18next": "^11.8.5",
"react-router-dom": "^6.10.0",
"recharts": "^2.1.6",
"semver-compare": "^1.0.0",
"styled-components": "^5.3.11",
"styled-normalize": "^8.0.7",
"styled-reset": "^4.3.4"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-syntax-jsx": "^7.22.5",
"@babel/plugin-transform-react-constant-elements": "^7.22.5",
"@babel/plugin-transform-react-inline-elements": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/register": "^7.22.15",
"@babel/runtime": "^7.23.1",
"@svgr/webpack": "^8.1.0",
"@trivago/prettier-plugin-sort-imports": "^2.0.2",
"babel-loader": "^8.2.5",
"babel-plugin-import": "^1.13.3",
"browserslist": "^4.22.1",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "7.0.1",
"dotenv-webpack": "^8.0.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-webpack-plugin": "^3.0.1",
"file-loader": "5.1.0",
"html-webpack-plugin": "5.5.3",
"prettier": "^2.3.2",
"terser-webpack-plugin": "5.3.9",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
},
"resolutions": {
"react-admin/@material-ui/core": "4.12.3"
}
}