mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 11:00:03 -03:30
121 lines
3.9 KiB
JSON
121 lines
3.9 KiB
JSON
{
|
|
"name": "ui",
|
|
"homepage": ".",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=16.13.1"
|
|
},
|
|
"dependencies": {
|
|
"@lingui/react": "3.13.3",
|
|
"@patternfly/patternfly": "4.196.7",
|
|
"@patternfly/react-core": "^4.201.0",
|
|
"@patternfly/react-icons": "4.49.19",
|
|
"@patternfly/react-table": "4.83.1",
|
|
"ace-builds": "^1.5.1",
|
|
"ansi-to-html": "0.7.2",
|
|
"axios": "0.22.0",
|
|
"codemirror": "^5.65.4",
|
|
"d3": "7.4.4",
|
|
"dagre": "^0.8.4",
|
|
"formik": "2.2.9",
|
|
"has-ansi": "5.0.1",
|
|
"html-entities": "2.3.2",
|
|
"js-yaml": "^3.13.1",
|
|
"luxon": "^2.4.0",
|
|
"prop-types": "^15.6.2",
|
|
"react": "17.0.2",
|
|
"react-ace": "^10.1.0",
|
|
"react-dom": "17.0.2",
|
|
"react-error-boundary": "^3.1.4",
|
|
"react-router-dom": "^5.1.2",
|
|
"react-virtualized": "^9.21.1",
|
|
"rrule": "2.7.0",
|
|
"sanitize-html": "2.4.0",
|
|
"styled-components": "5.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.16.10",
|
|
"@babel/eslint-parser": "^7.16.5",
|
|
"@babel/eslint-plugin": "^7.16.5",
|
|
"@babel/plugin-syntax-jsx": "7.16.7",
|
|
"@babel/polyfill": "^7.8.7",
|
|
"@babel/preset-react": "7.16.7",
|
|
"@cypress/instrument-cra": "^1.4.0",
|
|
"@lingui/cli": "^3.7.1",
|
|
"@lingui/loader": "^3.8.3",
|
|
"@lingui/macro": "^3.7.1",
|
|
"@nteract/mockument": "^1.0.4",
|
|
"@testing-library/jest-dom": "^5.16.2",
|
|
"@testing-library/react": "^12.1.5",
|
|
"@wojtekmaj/enzyme-adapter-react-17": "0.6.5",
|
|
"babel-plugin-macros": "3.1.0",
|
|
"enzyme": "^3.10.0",
|
|
"enzyme-adapter-react-16": "^1.14.0",
|
|
"enzyme-to-json": "^3.3.5",
|
|
"eslint": "^8.7.0",
|
|
"eslint-config-airbnb": "19.0.4",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-import-resolver-webpack": "0.13.2",
|
|
"eslint-plugin-i18next": "5.2.1",
|
|
"eslint-plugin-import": "2.25.4",
|
|
"eslint-plugin-jsx-a11y": "6.5.1",
|
|
"eslint-plugin-react": "7.28.0",
|
|
"eslint-plugin-react-hooks": "4.3.0",
|
|
"http-proxy-middleware": "^1.0.3",
|
|
"jest-websocket-mock": "^2.0.2",
|
|
"mock-socket": "^9.1.3",
|
|
"prettier": "2.3.2",
|
|
"react-scripts": "5.0.0"
|
|
},
|
|
"scripts": {
|
|
"prelint": "lingui compile",
|
|
"prestart": "lingui compile",
|
|
"prestart-instrumented": "lingui compile",
|
|
"pretest": "lingui compile",
|
|
"pretest-watch": "lingui compile",
|
|
"start": "GENERATE_SOURCEMAP=false ESLINT_NO_DEV_ERRORS=true PORT=3001 HTTPS=true DANGEROUSLY_DISABLE_HOST_CHECK=true react-scripts start",
|
|
"start-instrumented": "ESLINT_NO_DEV_ERRORS=true DEBUG=instrument-cra PORT=3001 HTTPS=true DANGEROUSLY_DISABLE_HOST_CHECK=true react-scripts -r @cypress/instrument-cra start",
|
|
"build": "INLINE_RUNTIME_CHUNK=false react-scripts build",
|
|
"test": "TZ='UTC' react-scripts test --watchAll=false",
|
|
"test-screens": "TZ='UTC' react-scripts test screens --watchAll=false",
|
|
"test-general": "TZ='UTC' react-scripts test --testPathIgnorePatterns='<rootDir>/src/screens/' --watchAll=false",
|
|
"test-watch": "TZ='UTC' react-scripts test",
|
|
"eject": "react-scripts eject",
|
|
"lint": "eslint --ext .js --ext .jsx .",
|
|
"extract-strings": "lingui extract",
|
|
"extract-template": "lingui extract-template",
|
|
"compile-strings": "lingui compile",
|
|
"prettier": "prettier --write \"src/**/*.{js,jsx,scss}\"",
|
|
"prettier-check": "prettier --check \"src/**/*.{js,jsx,scss}\""
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"jest": {
|
|
"snapshotSerializers": [
|
|
"enzyme-to-json/serializer"
|
|
],
|
|
"collectCoverageFrom": [
|
|
"src/**/*.{js,jsx}",
|
|
"testUtils/**/*.{js,jsx}"
|
|
],
|
|
"coveragePathIgnorePatterns": [
|
|
"<rootDir>/src/locales",
|
|
"index.js"
|
|
],
|
|
"transformIgnorePatterns": [
|
|
"<rootDir>/node_modules/(?!d3)/",
|
|
"<rootDir>/node_modules/(?!has-ansi)/"
|
|
]
|
|
}
|
|
}
|