-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.55 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
{
"name": "localui",
"description": "A simple UI to interact with real or emulated AWS services (localstack, minio, etc.)",
"version": "0.5.2",
"private": true,
"license": "MIT",
"type": "module",
"author": "Giorgio Garasto <[email protected]>",
"repository": "https://github.com/Dabolus/localui.git",
"homepage": "https://github.com/Dabolus/localui",
"funding": "https://github.com/sponsors/Dabolus",
"scripts": {
"build": "remix vite:build",
"dev": "concurrently 'yarn:dev:*'",
"dev:remix": "LOCALUI_SERVICES_ENDPOINT=http://localhost:4566 LOCALUI_ACCESS_KEY_ID=accesskeyid LOCALUI_SECRET_ACCESS_KEY=secretaccesskey remix vite:dev",
"dev:localstack": "docker compose up --force-recreate --build --renew-anon-volumes --remove-orphans",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc",
"extract-locales": "i18next && prettier --write app/locales",
"upgrade-interactive": "ncu --interactive"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.556.0",
"@aws-sdk/client-s3": "^3.556.0",
"@aws-sdk/client-sqs": "^3.556.0",
"@aws-sdk/lib-dynamodb": "^3.556.0",
"@aws-sdk/lib-storage": "^3.556.0",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"@mui/x-data-grid": "^7.3.0",
"@mui/x-data-grid-pro": "^7.3.0",
"@mui/x-license": "^7.2.0",
"@mui/x-tree-view": "^7.3.0",
"@remix-run/node": "^2.9.1",
"@remix-run/react": "^2.9.1",
"@remix-run/serve": "^2.9.1",
"@remix-run/server-runtime": "^2.9.1",
"csv-parse": "^5.5.5",
"docx-preview": "^0.3.0",
"fuse.js": "^7.0.0",
"i18next": "^23.11.2",
"i18next-browser-languagedetector": "^7.2.1",
"material-ui-popup-state": "^5.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone-esm": "^15.0.1",
"react-i18next": "^14.1.1",
"react-syntax-highlighter": "^15.5.0",
"remix-i18next": "^6.1.0"
},
"devDependencies": {
"@remix-run/dev": "^2.9.1",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/react-syntax-highlighter": "^15.5.11",
"concurrently": "^8.2.2",
"i18next-parser": "^8.13.0",
"npm-check-updates": "^16.14.18",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite-tsconfig-paths": "^4.3.2"
},
"resolutions": {
"rollup": "npm:@rollup/wasm-node@*"
},
"engines": {
"node": ">=14"
},
"sideEffects": false,
"packageManager": "[email protected]"
}