Add tooling for building static files

This commit is contained in:
Jake McDermott
2020-05-07 17:37:24 -04:00
parent 10f324110e
commit abcf8fea96
25 changed files with 9464 additions and 16520 deletions

View File

@@ -1,12 +1,41 @@
{
"name": "awx-react",
"version": "1.0.0",
"description": "",
"main": "index.jsx",
"name": "ui_next",
"version": "0.1.0",
"private": true,
"dependencies": {
"@lingui/react": "^2.9.1",
"@patternfly/patternfly": "^2.71.3",
"@patternfly/react-core": "^3.153.3",
"@patternfly/react-icons": "^3.15.15",
"@patternfly/react-tokens": "^2.8.12",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"ansi-to-html": "^0.6.11",
"axios": "^0.18.1",
"codemirror": "^5.47.0",
"d3": "^5.12.0",
"dagre": "^0.8.4",
"formik": "^2.1.2",
"has-ansi": "^3.0.0",
"html-entities": "^1.2.1",
"js-yaml": "^3.13.1",
"prop-types": "^15.6.2",
"react": "^16.13.1",
"react-codemirror2": "^6.0.0",
"react-dom": "^16.13.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"react-virtualized": "^9.21.1",
"rrule": "^2.6.4",
"styled-components": "^4.2.0"
},
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
"test": "TZ='UTC' jest --coverage",
"test-watch": "TZ='UTC' jest --watch",
"start": "PORT=3001 HTTPS=true DANGEROUSLY_DISABLE_HOST_CHECK=true react-scripts start",
"build": "react-scripts build",
"test": "TZ='UTC' react-scripts test --coverage --watchAll=false",
"test-watch": "TZ='UTC' react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --ext .js --ext .jsx .",
"add-locale": "lingui add-locale",
"extract-strings": "lingui extract",
@@ -14,25 +43,23 @@
"prettier": "prettier --write \"src/**/*.{js,jsx,scss}\"",
"prettier-check": "prettier --check \"src/**/*.{js,jsx,scss}\""
},
"keywords": [],
"author": "",
"license": "Apache",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.0.0",
"@lingui/cli": "^2.7.4",
"@lingui/macro": "^2.7.2",
"@babel/polyfill": "^7.8.7",
"@lingui/cli": "^2.9.1",
"@lingui/macro": "^2.9.1",
"@nteract/mockument": "^1.0.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-macros": "^2.4.2",
"babel-plugin-styled-components": "^1.10.0",
"css-loader": "^1.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
@@ -44,40 +71,20 @@
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^2.2.0",
"file-loader": "^2.0.0",
"history": "^4.9.0",
"jest": "^25.1.0",
"node-sass": "^4.13.1",
"prettier": "^1.18.2",
"react-hot-loader": "^4.3.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.14"
"http-proxy-middleware": "^1.0.3",
"prettier": "^1.18.2"
},
"dependencies": {
"@lingui/react": "^2.7.2",
"@patternfly/patternfly": "^2.71.3",
"@patternfly/react-core": "^3.153.3",
"@patternfly/react-icons": "^3.15.15",
"@patternfly/react-tokens": "^2.8.12",
"ansi-to-html": "^0.6.11",
"axios": "^0.18.1",
"codemirror": "^5.47.0",
"d3": "^5.12.0",
"dagre": "^0.8.4",
"formik": "^2.1.2",
"has-ansi": "^3.0.0",
"html-entities": "^1.2.1",
"js-yaml": "^3.13.1",
"prop-types": "^15.6.2",
"react": "^16.13.0",
"react-codemirror2": "^6.0.0",
"react-dom": "^16.13.0",
"react-router-dom": "^5.1.2",
"react-virtualized": "^9.21.1",
"rrule": "^2.6.4",
"styled-components": "^4.2.0"
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"testUtils/**/*.{js,jsx}"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/locales",
"index.js"
]
}
}