-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.4 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.4 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
{
"name": "data-rentgen",
"version": "0.5.1",
"private": true,
"description": "Frontend for Data.Rentgen",
"license": "Apache-2.0",
"dependencies": {
"@dagrejs/dagre": "^1.1.8",
"@mui/icons-material": "^7.3.9",
"@mui/material": "^7.3.9",
"@xyflow/react": "^12.10.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"inflection": "^3.0.2",
"query-string": "^9.3.1",
"ra-i18n-polyglot": "^5.14.4",
"ra-language-english": "^5.14.4",
"ra-language-russian": "^5.4.5",
"ra-ui-materialui": "5.14.4",
"react": "^19.2.4",
"react-admin": "^5.14.4",
"react-dom": "^19.2.4",
"react-router": "^7.13.1",
"react-router-dom": "^7.13.1",
"react-syntax-highlighter": "^16.1.1"
},
"scripts": {
"dev": "vite",
"prod": "vite --host 0.0.0.0",
"build": "vite build",
"lint": "eslint --fix src",
"lint-check": "eslint src",
"type-check": "tsc",
"prettier": "prettier 'src' 'public' --write --list-different",
"prettier-check": "prettier 'src' 'public' --check",
"pre-commit-install": "husky"
},
"devDependencies": {
"@eslint/compat": "^2.0.3",
"@eslint/js": "^9.39.4",
"@rollup/plugin-alias": "^6.0.0",
"@svgr/plugin-svgo": "^8.1.0",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^5.2.0",
"eslint": "^9.39.4",
"eslint-plugin-compat": "^6.2.1",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"rewire": "^9.0.1",
"rollup-plugin-visualizer": "^6.0.11",
"rollup-preserve-directives": "^1.1.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^7.3.1",
"vite-plugin-svgr": "^4.5.0",
"vite-plugin-webfont-dl": "^3.12.0"
},
"lint-staged": {
"public/**/*": "prettier --write --list-different",
"src/**/*": "prettier --write --list-different",
"src/**/*.{ts,tsx}": "eslint --fix"
},
"browserslist": {
"production": [
">0.5%",
"chrome 81",
"firefox 88",
"not dead"
]
}
}