-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80d69a4
commit 4dcb6ea
Showing
8 changed files
with
245 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,126 +1,127 @@ | ||
{ | ||
"name": "tljh_repo2docker_ui", | ||
"version": "0.1.0", | ||
"description": "tljh_repo2docker frontend package", | ||
"license": "BSD-3-Clause", | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=development webpack --config webpack.config.js", | ||
"build:prod": "cross-env NODE_ENV=production webpack --config webpack.config.js", | ||
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/" | ||
}, | ||
"devDependencies": { | ||
"@types/react": "^18.2.0", | ||
"@types/react-dom": "^18.2.0", | ||
"@typescript-eslint/eslint-plugin": "^5.41.0", | ||
"@typescript-eslint/parser": "^5.41.0", | ||
"cross-env": "^7.0.3", | ||
"css-loader": "^6.7.1", | ||
"eslint": "^8.26.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-plugin-import": "^2.26.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"eslint-plugin-react": "^7.31.10", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"less": "^4.1.3", | ||
"less-loader": "11.1.0", | ||
"prettier": "^3.0.0", | ||
"sass": "^1.55.0", | ||
"sass-loader": "^13.1.0", | ||
"style-loader": "^3.3.3", | ||
"ts-loader": "^9.2.6", | ||
"typescript": "^5", | ||
"webpack": "^5.74.0", | ||
"webpack-cli": "^5.1.4" | ||
}, | ||
"dependencies": { | ||
"@emotion/react": "^11.11.3", | ||
"@emotion/styled": "^11.11.0", | ||
"@fontsource/roboto": "^5.0.8", | ||
"@mui/icons-material": "^5.15.3", | ||
"@mui/material": "^5.15.3", | ||
"@mui/x-data-grid": "^6.18.7", | ||
"axios": "^1.6.5", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"url-join": "^5.0.0" | ||
}, | ||
"eslintIgnore": [ | ||
"node_modules", | ||
"dist", | ||
"coverage", | ||
"**/*.d.ts" | ||
], | ||
"eslintConfig": { | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:prettier/recommended", | ||
"plugin:react-hooks/recommended" | ||
], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"project": "tsconfig.json", | ||
"tsconfigRootDir": "frontend", | ||
"sourceType": "module" | ||
"name": "tljh_repo2docker_ui", | ||
"version": "0.1.0", | ||
"description": "tljh_repo2docker frontend package", | ||
"license": "BSD-3-Clause", | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=development webpack --config webpack.config.js", | ||
"build:prod": "cross-env NODE_ENV=production webpack --config webpack.config.js", | ||
"eslint": "eslint --ext .js,.jsx,.ts,.tsx src/", | ||
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", | ||
"lint": "yarn prettier && yarn eslint" | ||
}, | ||
"devDependencies": { | ||
"@types/react": "^18.2.0", | ||
"@types/react-dom": "^18.2.0", | ||
"@typescript-eslint/eslint-plugin": "^5.41.0", | ||
"@typescript-eslint/parser": "^5.41.0", | ||
"cross-env": "^7.0.3", | ||
"css-loader": "^6.7.1", | ||
"eslint": "^8.26.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-plugin-import": "^2.26.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"eslint-plugin-react": "^7.31.10", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"less": "^4.1.3", | ||
"less-loader": "11.1.0", | ||
"prettier": "^3.0.0", | ||
"sass": "^1.55.0", | ||
"sass-loader": "^13.1.0", | ||
"style-loader": "^3.3.3", | ||
"ts-loader": "^9.2.6", | ||
"typescript": "^5", | ||
"webpack": "^5.74.0", | ||
"webpack-cli": "^5.1.4" | ||
}, | ||
"plugins": [ | ||
"@typescript-eslint" | ||
"dependencies": { | ||
"@emotion/react": "^11.11.3", | ||
"@emotion/styled": "^11.11.0", | ||
"@fontsource/roboto": "^5.0.8", | ||
"@mui/icons-material": "^5.15.3", | ||
"@mui/material": "^5.15.3", | ||
"@mui/x-data-grid": "^6.18.7", | ||
"axios": "^1.6.5", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"url-join": "^5.0.0" | ||
}, | ||
"eslintIgnore": [ | ||
"node_modules", | ||
"dist", | ||
"coverage", | ||
"**/*.d.ts" | ||
], | ||
"rules": { | ||
"@typescript-eslint/naming-convention": [ | ||
"error", | ||
{ | ||
"selector": "interface", | ||
"format": [ | ||
"PascalCase" | ||
], | ||
"custom": { | ||
"regex": "^I[A-Z]", | ||
"match": true | ||
} | ||
} | ||
], | ||
"@typescript-eslint/no-unused-vars": [ | ||
"warn", | ||
{ | ||
"args": "none", | ||
"argsIgnorePattern": "^_", | ||
"varsIgnorePattern": "^_", | ||
"caughtErrorsIgnorePattern": "^_" | ||
"eslintConfig": { | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:prettier/recommended", | ||
"plugin:react-hooks/recommended" | ||
], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"project": "tsconfig.json", | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"@typescript-eslint" | ||
], | ||
"rules": { | ||
"@typescript-eslint/naming-convention": [ | ||
"error", | ||
{ | ||
"selector": "interface", | ||
"format": [ | ||
"PascalCase" | ||
], | ||
"custom": { | ||
"regex": "^I[A-Z]", | ||
"match": true | ||
} | ||
} | ||
], | ||
"@typescript-eslint/no-unused-vars": [ | ||
"warn", | ||
{ | ||
"args": "none", | ||
"argsIgnorePattern": "^_", | ||
"varsIgnorePattern": "^_", | ||
"caughtErrorsIgnorePattern": "^_" | ||
} | ||
], | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"@typescript-eslint/no-namespace": "off", | ||
"@typescript-eslint/no-use-before-define": "off", | ||
"@typescript-eslint/quotes": [ | ||
"error", | ||
"single", | ||
{ | ||
"avoidEscape": true, | ||
"allowTemplateLiterals": false | ||
} | ||
], | ||
"curly": [ | ||
"error", | ||
"all" | ||
], | ||
"eqeqeq": "error", | ||
"prefer-arrow-callback": "error" | ||
} | ||
], | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"@typescript-eslint/no-namespace": "off", | ||
"@typescript-eslint/no-use-before-define": "off", | ||
"@typescript-eslint/quotes": [ | ||
"error", | ||
"single", | ||
{ | ||
"avoidEscape": true, | ||
"allowTemplateLiterals": false | ||
} | ||
], | ||
"curly": [ | ||
"error", | ||
"all" | ||
], | ||
"eqeqeq": "error", | ||
"prefer-arrow-callback": "error" | ||
}, | ||
"prettier": { | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"arrowParens": "avoid", | ||
"endOfLine": "auto", | ||
"overrides": [ | ||
{ | ||
"files": "package.json", | ||
"options": { | ||
"tabWidth": 4 | ||
} | ||
} | ||
] | ||
} | ||
}, | ||
"prettier": { | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"arrowParens": "avoid", | ||
"endOfLine": "auto", | ||
"overrides": [ | ||
{ | ||
"files": "package.json", | ||
"options": { | ||
"tabWidth": 4 | ||
} | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
.MuiButton-root { | ||
text-transform: capitalize !important; | ||
} | ||
text-transform: capitalize !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.