-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.56 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
92
93
94
95
{
"name": "platformadmin",
"version": "0.7.0",
"private": true,
"author": {
"name": "Matteo Chini",
"email": "m.chini@fbk.eu"
},
"contributors": [
{
"name": "Matteo Saloni",
"email": "msaloni@fbk.eu"
},
{
"name": "Claudio Ballardini",
"email": "cballardini@fbk.eu"
}
],
"scripts": {
"start": "env-cmd -f .env.development vite",
"start:localhost": "env-cmd -f .env.localhost vite",
"start:development": "env-cmd -f .env.development vite",
"start:production": "env-cmd -f .env.production vite --base=/console",
"build": "env-cmd -f .env.development vite build",
"build:localhost": "env-cmd -f .env.localhost vite build",
"build:production": "env-cmd -f .env.production vite build --base=/console",
"serve": "env-cmd -f .env.development vite preview",
"serve:localhost": "env-cmd -f .env.localhost vite preview",
"serve:production": "env-cmd -f .env.production vite preview --base=/console",
"type-check": "tsc --noEmit",
"prettier": "prettier --config ./prettier.config.js --write --list-different \"src/**/*.{ts,tsx,js,html}\" ./index.html",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2"
},
"dependencies": {
"@dslab/ra-ace-editor": "^1.2.1",
"@dslab/ra-auth-oidc": "^1.0.1",
"@dslab/ra-back-button": "^1.0.0",
"@dslab/ra-delete-dialog-button": "^1.0.0",
"@dslab/ra-dialog-crud": "^1.0.1",
"@dslab/ra-export-record-button": "^1.0.0",
"@dslab/ra-export-yaml": "^1.0.0",
"@dslab/ra-inspect-button": "^1.0.3",
"@dslab/ra-jsonschema-input": "^2.1.1",
"@dslab/ra-language-italian": "^1.0.0",
"@dslab/ra-root-selector": "^1.0.1",
"@dslab/ra-stepper": "^1.1.5",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fontsource/open-sans": "^5.1.0",
"@melloware/react-logviewer": "^5.0.6",
"@mui/icons-material": "5.15.11",
"@mui/material": "5.15.11",
"@mui/system": "5.15.11",
"@mui/x-charts": "^7.6.1",
"@mui/x-data-grid": "^6.19.6",
"@mui/x-tree-view": "^7.13.0",
"@stomp/stompjs": "^7.0.0",
"@uppy/react": "^3.4.0",
"@wtfcode/byte-converter": "^2.0.8",
"@xyflow/react": "^12.3.1",
"change-case": "^5.4.2",
"dagre": "^0.8.5",
"env-cmd": "^10.1.0",
"k8s-resource-parser": "^0.2.2",
"mui-chips-input": "^2.1.4",
"react": "^18.2.0",
"react-ace": "^11.0.1",
"react-admin": "4.16.12",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-json-tree": "^0.19.0",
"react-papaparse": "^4.4.0",
"react-router": "6.22.2",
"react-router-dom": "6.22.2",
"react-syntax-highlighter": "^15.5.0",
"uppy": "^3.27.0"
},
"devDependencies": {
"@types/node": "^18.16.1",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react": "^4.2.1",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"prettier": "^2.8.8",
"typescript": "^5.2.2",
"vite": "^5.1.4"
}
}