robosats/frontend/package.json

86 lines
2.7 KiB
JSON
Raw Normal View History

{
"name": "frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack --watch --progress --mode development",
"test": "jest",
2022-08-28 01:20:45 +03:00
"build": "webpack --mode production",
"lint": "eslint src/**/*.{js,ts,tsx}",
"lint:fix": "eslint --fix 'src/**/*.{js,ts,tsx}'",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.17.9",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.44",
"@types/react-dom": "^18.0.1",
"@types/webpack": "^5.28.0",
2022-08-28 01:20:45 +03:00
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"babel-loader": "^8.2.5",
2022-08-28 01:20:45 +03:00
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^27.5.1",
2022-08-28 01:20:45 +03:00
"prettier": "^2.7.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@date-io/date-fns": "^2.15.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/base": "^5.0.0-alpha.77",
2022-01-14 15:00:53 +03:00
"@mui/icons-material": "^5.2.5",
"@mui/lab": "^5.0.0-alpha.73",
2022-07-17 01:06:08 +03:00
"@mui/material": "^5.9.0",
"@mui/system": "^5.9.0",
2022-01-15 00:40:54 +03:00
"@mui/x-data-grid": "^5.2.2",
"@mui/x-date-pickers": "^5.0.1",
"@nivo/core": "^0.79.0",
"@nivo/line": "^0.79.1",
"country-flag-icons": "^1.4.25",
"date-fns": "^2.28.0",
"i18next": "^21.6.14",
"i18next-browser-languagedetector": "^6.1.4",
"i18next-http-backend": "^1.4.0",
"install": "^0.13.0",
"js-sha256": "^0.9.0",
"npm": "^8.19.1",
"openpgp": "^5.2.1",
2022-07-17 01:06:08 +03:00
"react": "^18.2.0",
"react-countdown": "^2.3.2",
2022-05-06 00:28:54 +03:00
"react-dom": "^18.1.0",
"react-i18next": "^11.16.2",
"react-image": "^4.0.3",
"react-qr-code": "^2.0.3",
2022-01-27 17:40:14 +03:00
"react-responsive": "^9.0.0-beta.6",
"react-router-dom": "^5.2.0",
"react-smooth-image": "^1.1.0",
"react-world-flags": "^1.4.0",
2022-03-11 00:35:16 +03:00
"reconnecting-websocket": "^4.4.0",
"simple-plist": "^1.3.1",
"webln": "^0.3.0",
"websocket": "^1.0.34"
}
2022-08-28 01:20:45 +03:00
}