use create react app to simplify the application

This commit is contained in:
dennis.ludwig
2021-06-10 10:08:45 +02:00
parent 630e03a92d
commit 8231afa50f
47 changed files with 1288 additions and 12936 deletions

View File

@@ -3,12 +3,63 @@
"version": "2.0.0",
"description": "AOE Technology Radar",
"private": true,
"scripts": {
"build": "tsc"
"author": "AOE GmbH <contact-de@aoe.com> (http://www.aoe.com)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/AOEpeople/aoe_technology_radar.git"
},
"bin": {
"aoe_technology_radar": "scripts/build.js",
"aoe_technology_radar-static": "bin/tasks/create-static.js"
"generateJson": "scripts/generateJson.js",
"buildRadar": "scripts/buildRadar.js"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build:tasks": "tsc --project tsconfig.tasks.json",
"test": "react-scripts test",
"ts:check": "tsc --noEmit",
"lint": "yarn ts:check",
"prepare": "husky install",
"eject": "react-scripts eject"
},
"dependencies": {
"classnames": "^2.3.1",
"moment": "^2.29.1",
"query-string": "^7.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"sass": "^1.34.0",
"typescript": "^4.1.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.15",
"@types/marked": "^2.0.3",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/walk": "^2.3.0",
"front-matter": "^4.0.2",
"fs-extra": "^10.0.0",
"highlight.js": "^11.0.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"marked": "^2.0.7",
"prettier": "^2.3.0",
"walk": "^2.3.14"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
@@ -21,66 +72,5 @@
"last 1 firefox version",
"last 1 safari version"
]
},
"author": "AOE GmbH <contact-de@aoe.com> (http://www.aoe.com)",
"license": "Apache-2.0",
"dependencies": {
"@babel/core": "7.9.0",
"@types/classnames": "^2.2.10",
"@types/fs-extra": "^9.0.1",
"@types/highlight.js": "^9.12.4",
"@types/marked": "^1.1.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-router-dom": "^5.1.5",
"@types/walk": "^2.3.0",
"babel-loader": "8.1.0",
"babel-plugin-named-asset-import": "^0.3.6",
"babel-preset-react-app": "^9.1.2",
"camelcase": "^5.3.1",
"case-sensitive-paths-webpack-plugin": "2.3.0",
"classnames": "^2.2.6",
"css-loader": "3.4.2",
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0",
"file-loader": "4.3.0",
"front-matter": "2.3.0",
"fs-extra": "^8.1.0",
"highlight.js": "10.5.0",
"html-webpack-plugin": "4.0.0-beta.11",
"jest": "^26.6.3",
"marked": "0.3.18",
"mini-css-extract-plugin": "0.9.0",
"moment": "2.22.1",
"node-sass": "4",
"optimize-css-assets-webpack-plugin": "5.0.3",
"pnp-webpack-plugin": "1.6.4",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"postcss-normalize": "8.0.1",
"postcss-preset-env": "6.7.0",
"postcss-safe-parser": "4.0.1",
"query-string": "^6.13.1",
"react": "^16.13.1",
"react-dev-utils": "^10.2.1",
"react-dom": "^16.0.0",
"react-router-dom": "^5.2.0",
"resolve": "1.15.0",
"resolve-url-loader": "3.1.2",
"sass-loader": "8.0.2",
"style-loader": "0.23.1",
"terser-webpack-plugin": "2.3.8",
"ts-pnp": "1.1.6",
"typescript": "^3.9.6",
"url-loader": "2.3.0",
"walk": "2.3.9",
"webpack": "4.42.0",
"webpack-dev-server": "3.11.1",
"webpack-manifest-plugin": "2.2.0",
"workbox-webpack-plugin": "4.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/AOEpeople/aoe_technology_radar.git"
}
}