circuitbreaker/web/package.json
2023-03-22 17:28:11 +03:00

56 lines
1.7 KiB
JSON

{
"name": "checkout",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export -o ../webui-build",
"test": "yarn jest --runInBand",
"test-watch": "yarn jest --watch",
"check-types": "tsc --pretty --noEmit",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"prepare": "cd .. && husky install web/.husky",
"build-export": "yarn build && yarn export"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/base": "^5.0.0-alpha.120",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.11",
"@tanstack/react-query": "^4.24.10",
"axios": "^0.24.0",
"date-fns": "^2.29.3",
"i18next": "^22.4.12",
"i18next-http-backend": "^2.2.0",
"lodash": "^4.17.21",
"next": "^13.0.0",
"normalize.css": "^8.0.1",
"notistack": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.2.0"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/node": "^17.0.14",
"@types/react": "18.0.24",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "<8.0.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-next": "^13.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^8.0.0",
"prettier": "^2.4.1",
"typescript": "4.7.4"
}
}