EvaluationEfficiencyOptimiz.../front/package.json

53 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2024-09-24 20:57:08 +04:00
{
2024-10-20 22:28:06 +04:00
"name": "app",
2024-09-24 20:57:08 +04:00
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"build": "webpack --mode production",
"lint": "eslint src/**/*.{js,ts,tsx}",
"lint-fix": "npm run lint -- --fix",
"start": "webpack serve --mode development",
"style-lint": "npx stylelint '**/*.{css,scss}'",
2024-10-20 22:28:06 +04:00
"style-lint-fix": "npm run style-lint -- --fix"
2024-09-24 20:57:08 +04:00
},
"dependencies": {
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
2024-10-20 22:28:06 +04:00
"react-router-dom": "^6.26.2",
2024-09-24 20:57:08 +04:00
"zustand": "5.0.0-rc.2"
},
"devDependencies": {
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.9.0",
2024-10-20 22:28:06 +04:00
"@svgr/webpack": "^8.1.0",
2024-09-24 20:57:08 +04:00
"@types/eslint__js": "^8.42.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"html-webpack-plugin": "^5.5.0",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"sass-loader": "^16.0.0",
"style-loader": "^4.0.0",
2024-10-20 22:28:06 +04:00
"stylelint": "^16.9.0",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.7.0",
2024-09-24 20:57:08 +04:00
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"typescript-plugin-css-modules": "^5.1.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}