{ "name": "project-badging", "version": "1.0.0", "description": "Website for DEI Project Badging with CHAOSS", "main": "index.js", "scripts": { "lint": "npx eslint .", "lint:fix": "npm run lint -- --fix", "prettier": "npx prettier . --check", "prettier:fix": "npm run prettier -- --write", "stylelint": "npx stylelint \"**/*.css\" --fix --allow-empty-input", "format": "npm run prettier:fix && npm run lint:fix && npm run stylelint", "build": "webpack --config webpack.prod.js", "build:staging": "webpack --config webpack.staging.js", "dev": "webpack serve --config webpack.dev.js", "test": "echo \"Error: no test specified\"", "precommit": "lint-staged", "prepare": "husky install" }, "repository": { "type": "git", "url": "git+https://github.com/badging/badging.git" }, "author": "AllInOpenSource | CHAOSS", "license": "MIT", "bugs": { "url": "https://github.com/badging/badging/issues" }, "homepage": "https://github.com/badging/badging#readme", "dependencies": { "@emotion/react": "11.11.0", "@emotion/styled": "11.11.0", "@mui/icons-material": "5.11.16", "@mui/material": "5.13.1", "@tanstack/react-query": "5.8.1", "final-form": "4.20.9", "material-react-table": "1.11.4", "mdbreact": "5.2.0", "prop-types": "15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", "react-final-form": "6.5.9", "react-hook-form": "7.50.1", "react-responsive": "9.0.2", "react-router-dom": "^6.10.0", "react-scripts": "^5.0.1", "remarkable": "2.0.1", "webpack-merge": "5.10.0" }, "devDependencies": { "@babel/cli": "^7.21.0", "@babel/core": "^7.21.4", "@babel/preset-env": "^7.21.4", "@babel/preset-react": "^7.18.6", "@svgr/webpack": "^7.0.0", "babel-loader": "^9.1.2", "css-loader": "^6.7.3", "dotenv": "16.3.1", "eslint": "^8.39.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-jsx-a11y": "^6.7.1", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.32.2", "file-loader": "^6.2.0", "html-webpack-plugin": "^5.5.0", "husky": "8.0.3", "lint-staged": "^13.2.1", "nodemon": "^2.0.22", "prettier": "^2.8.7", "sass": "^1.62.0", "sass-loader": "^13.2.2", "style-loader": "^3.3.2", "stylelint": "^15.4.0", "stylelint-config-standard": "33.0.0", "stylelint-scss": "4.6.0", "svg-url-loader": "8.0.0", "webpack": "^5.79.0", "webpack-cli": "^5.0.1", "webpack-dev-server": "^4.13.2" }, "engines": { "node": ">= 16.15.0" }, "lint-staged": { "*.{js,jsx,ts,tsx,json,md,html,css,scss}": [ "npm run format -v", "git add -v" ] }, "husky": { "hooks": { "pre-commit": "npm run precommit -v" } } }