mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-28 11:40:04 +00:00
99 lines
2.7 KiB
JSON
99 lines
2.7 KiB
JSON
{
|
|
"name": "nginxproxymanager",
|
|
"version": "3.0.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@testing-library/jest-dom": "5.14.1",
|
|
"@testing-library/react": "12.0.0",
|
|
"@types/humps": "^2.0.0",
|
|
"@types/jest": "26.0.23",
|
|
"@types/lodash": "4.14.170",
|
|
"@types/node": "16.0.0",
|
|
"@types/react": "17.0.13",
|
|
"@types/react-dom": "17.0.8",
|
|
"@types/react-router-dom": "5.1.7",
|
|
"@types/styled-components": "5.1.11",
|
|
"@typescript-eslint/eslint-plugin": "^4.28.1",
|
|
"@typescript-eslint/parser": "^4.28.1",
|
|
"babel-eslint": "^10.1.0",
|
|
"classnames": "^2.3.1",
|
|
"date-fns": "2.22.1",
|
|
"eslint": "^7.30.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-config-react-app": "^6.0.0",
|
|
"eslint-loader": "^4.0.2",
|
|
"eslint-plugin-flowtype": "^5.8.0",
|
|
"eslint-plugin-import": "^2.23.4",
|
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
"eslint-plugin-react": "^7.24.0",
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
"humps": "^2.0.1",
|
|
"jest-date-mock": "1.0.8",
|
|
"jest-fetch-mock": "3.0.3",
|
|
"jest-junit": "^12.2.0",
|
|
"jest-localstorage-mock": "2.4.14",
|
|
"jest-runner-eslint": "0.10.1",
|
|
"lodash": "4.17.21",
|
|
"moment": "2.29.1",
|
|
"node-sass": "^5.0.0",
|
|
"prettier": "2.3.2",
|
|
"query-string": "7.0.1",
|
|
"react": "^17.0.2",
|
|
"react-async": "10.0.1",
|
|
"react-dom": "17.0.2",
|
|
"react-intl": "^5.20.6",
|
|
"react-router-dom": "^5.2.0",
|
|
"react-scripts": "4.0.3",
|
|
"rooks": "5.0.2",
|
|
"styled-components": "5.3.0",
|
|
"tabler-icons-react": "^1.35.0",
|
|
"typescript": "^4.3.5"
|
|
},
|
|
"scripts": {
|
|
"start": "react-scripts start",
|
|
"build": "react-scripts build",
|
|
"lint": "yarn jest --config jest.eslint.js --watch",
|
|
"lint:ci": "yarn lint --watchAll=false",
|
|
"test": "react-scripts test",
|
|
"test:coverage": "yarn test --coverage --watchAll=false",
|
|
"test:ci": "yarn test:coverage",
|
|
"eject": "react-scripts eject",
|
|
"prettier": "prettier \"**/*.+(js|json|yml|css|ts|tsx)\"",
|
|
"format": "yarn prettier -- --write",
|
|
"lint:fix": "eslint --fix --ext .ts --ext .tsx .",
|
|
"locale-extract": "formatjs extract 'src/**/*.tsx' --out-file src/locale/src/en.json",
|
|
"locale-compile": "formatjs compile-folder src/locale/src src/locale/lang --ast"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"jest": {
|
|
"globalSetup": "<rootDir>/globalSetup.js",
|
|
"collectCoverageFrom": [
|
|
"src/**/*.{js,jsx,ts,tsx}",
|
|
"!src/testUtils/*"
|
|
],
|
|
"coverageThreshold": {
|
|
"global": {
|
|
"branches": 0,
|
|
"functions": 0,
|
|
"lines": 0,
|
|
"statements": 0
|
|
}
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@formatjs/cli": "^4.2.29"
|
|
}
|
|
}
|