2022-01-01 23:58:44 +00:00
|
|
|
{
|
|
|
|
"name": "frontend",
|
2024-01-22 11:12:20 +00:00
|
|
|
"version": "0.5.4",
|
2022-01-01 23:58:44 +00:00
|
|
|
"description": "",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2023-08-17 11:30:32 +00:00
|
|
|
"dev": "node --max-old-space-size=4096 ./node_modules/.bin/webpack --watch --progress --mode development",
|
2022-04-20 19:32:41 +00:00
|
|
|
"test": "jest",
|
2022-08-27 22:20:45 +00:00
|
|
|
"build": "webpack --mode production",
|
|
|
|
"lint": "eslint src/**/*.{js,ts,tsx}",
|
|
|
|
"lint:fix": "eslint --fix 'src/**/*.{js,ts,tsx}'",
|
2022-09-20 17:39:49 +00:00
|
|
|
"format": "prettier --write '**/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
|
2022-01-01 23:58:44 +00:00
|
|
|
},
|
|
|
|
"keywords": [],
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC",
|
|
|
|
"devDependencies": {
|
2023-07-17 12:40:30 +00:00
|
|
|
"@babel/core": "^7.22.9",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.22.9",
|
|
|
|
"@babel/preset-env": "^7.22.9",
|
|
|
|
"@babel/preset-react": "^7.22.5",
|
|
|
|
"@babel/preset-typescript": "^7.22.5",
|
|
|
|
"@babel/runtime": "^7.22.6",
|
|
|
|
"@types/jest": "^29.5.3",
|
2023-10-21 09:53:18 +00:00
|
|
|
"@types/leaflet": "^1.9.7",
|
2023-08-28 10:55:25 +00:00
|
|
|
"@types/react": "^18.2.21",
|
2023-07-17 12:40:30 +00:00
|
|
|
"@types/react-dom": "^18.2.7",
|
2023-10-21 09:55:27 +00:00
|
|
|
"@types/webpack": "^5.28.4",
|
2023-07-14 09:34:58 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.35.1",
|
2022-08-27 22:20:45 +00:00
|
|
|
"@typescript-eslint/parser": "^5.35.1",
|
2023-07-17 12:40:30 +00:00
|
|
|
"babel-loader": "^9.1.3",
|
2024-01-19 13:27:54 +00:00
|
|
|
"copy-webpack-plugin": "^12.0.2",
|
2023-07-17 12:40:30 +00:00
|
|
|
"eslint": "^8.45.0",
|
2023-12-15 15:15:35 +00:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2023-07-17 12:40:30 +00:00
|
|
|
"eslint-config-standard-with-typescript": "^36.1.0",
|
2023-08-11 11:23:25 +00:00
|
|
|
"eslint-import-resolver-typescript": "^3.6.0",
|
2023-07-17 12:40:30 +00:00
|
|
|
"eslint-plugin-import": "^2.27.5",
|
2024-01-12 12:02:06 +00:00
|
|
|
"eslint-plugin-n": "^16.6.2",
|
2024-01-19 13:27:30 +00:00
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
2023-07-17 12:40:30 +00:00
|
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
|
|
"eslint-plugin-react": "^7.32.2",
|
2022-08-27 22:20:45 +00:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
2023-07-17 12:40:30 +00:00
|
|
|
"jest": "^29.6.1",
|
2024-01-19 13:27:13 +00:00
|
|
|
"prettier": "^3.2.4",
|
2023-12-25 13:16:48 +00:00
|
|
|
"ts-node": "^10.9.2",
|
2023-12-15 15:15:42 +00:00
|
|
|
"typescript": "^5.3.3",
|
2023-10-21 09:55:27 +00:00
|
|
|
"webpack": "^5.89.0",
|
2023-07-17 12:40:30 +00:00
|
|
|
"webpack-cli": "^5.1.4"
|
2022-01-01 23:58:44 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-07-17 12:40:30 +00:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
2023-10-17 22:07:16 +00:00
|
|
|
"@christopherpickering/react-leaflet-markercluster": "^1.1.0",
|
2023-07-17 12:40:30 +00:00
|
|
|
"@emotion/react": "^11.11.1",
|
|
|
|
"@emotion/styled": "^11.11.0",
|
|
|
|
"@mui/base": "^5.0.0-beta.7",
|
2024-01-06 12:35:52 +00:00
|
|
|
"@mui/icons-material": "^5.15.3",
|
2023-07-17 12:40:30 +00:00
|
|
|
"@mui/lab": "^5.0.0-alpha.136",
|
2024-01-06 12:41:09 +00:00
|
|
|
"@mui/material": "^5.15.3",
|
2024-01-06 12:35:21 +00:00
|
|
|
"@mui/system": "^5.15.3",
|
2023-11-03 11:25:10 +00:00
|
|
|
"@mui/x-data-grid": "^6.17.0",
|
2024-01-19 13:27:41 +00:00
|
|
|
"@mui/x-date-pickers": "^6.19.0",
|
2023-11-24 15:46:09 +00:00
|
|
|
"@nivo/core": "^0.84.0",
|
2023-11-24 07:44:49 +00:00
|
|
|
"@nivo/line": "^0.84.0",
|
2023-07-17 12:40:30 +00:00
|
|
|
"base-ex": "^0.8.1",
|
2023-12-01 12:58:27 +00:00
|
|
|
"country-flag-icons": "^1.5.9",
|
2023-07-17 12:40:30 +00:00
|
|
|
"date-fns": "^2.30.0",
|
2022-09-28 12:08:16 +00:00
|
|
|
"file-replace-loader": "^1.4.0",
|
2023-07-17 12:40:30 +00:00
|
|
|
"i18next": "^23.2.11",
|
2023-11-17 11:32:54 +00:00
|
|
|
"i18next-browser-languagedetector": "^7.2.0",
|
2023-12-01 12:57:51 +00:00
|
|
|
"i18next-http-backend": "^2.4.2",
|
2022-08-30 19:55:53 +00:00
|
|
|
"install": "^0.13.0",
|
2023-09-05 12:08:27 +00:00
|
|
|
"js-sha256": "^0.10.1",
|
2023-10-12 12:57:51 +00:00
|
|
|
"leaflet": "^1.9.4",
|
2023-04-28 10:12:34 +00:00
|
|
|
"light-bolt11-decoder": "^3.0.0",
|
2024-01-28 12:16:15 +00:00
|
|
|
"npm": "^10.4.0",
|
2023-10-27 10:07:31 +00:00
|
|
|
"openpgp": "^5.11.0",
|
2022-07-16 22:06:08 +00:00
|
|
|
"react": "^18.2.0",
|
2023-07-17 12:40:30 +00:00
|
|
|
"react-countdown": "^2.3.5",
|
|
|
|
"react-dom": "^18.2.0",
|
2023-12-01 12:57:38 +00:00
|
|
|
"react-grid-layout": "^1.4.4",
|
2023-12-30 10:34:15 +00:00
|
|
|
"react-i18next": "^14.0.0",
|
2023-07-17 12:40:30 +00:00
|
|
|
"react-image": "^4.1.0",
|
2023-10-12 12:57:51 +00:00
|
|
|
"react-leaflet": "^4.2.1",
|
2023-07-17 12:40:30 +00:00
|
|
|
"react-qr-code": "^2.0.11",
|
2024-01-12 12:02:58 +00:00
|
|
|
"react-router-dom": "^6.21.2",
|
2022-08-30 19:55:53 +00:00
|
|
|
"react-smooth-image": "^1.1.0",
|
2023-10-10 12:35:30 +00:00
|
|
|
"react-world-flags": "^1.6.0",
|
2022-03-10 21:35:16 +00:00
|
|
|
"reconnecting-websocket": "^4.4.0",
|
2022-04-05 14:25:53 +00:00
|
|
|
"simple-plist": "^1.3.1",
|
2023-07-17 12:40:30 +00:00
|
|
|
"webln": "^0.3.2",
|
2022-01-13 19:22:54 +00:00
|
|
|
"websocket": "^1.0.34"
|
2022-01-01 23:58:44 +00:00
|
|
|
}
|
2022-09-09 17:33:29 +00:00
|
|
|
}
|