{ "name": "rwt", "version": "1.0.0", "private": true, "description": "An out of the box react webpack template,It is simpler, more convenient to customize and more modular on the basis of create-react-app.", "author": "xyhxx (603331487@qq.com)", "license": "MIT", "pnpm": { "peerDependencyRules": { "ignoreMissing": [ "eslint", "typescript", "postcss" ] } }, "scripts": { "dev": "pnpm -F app dev", "dev:e2e": "pnpm -F app e2e", "build": "pnpm -F app build", "test": "pnpm -F app test", "test:ui": "pnpm -F app test:ui", "test:coverage": "pnpm -F app test:coverage", "cypress:run": "cypress run -b chrome", "cypress": "cypress open", "lint:style": "stylelint packages/app/src *.*.css", "lint:js": "eslint . --ext .js,.jsx,.ts,.tsx", "lint:style-fix": "pnpm run lint:style --fix", "lint:js-fix": "pnpm run lint:js --fix", "prepare": "husky install", "postinstall": "husky install", "pre-commit": "lint-staged", "release": "standard-version", "release:major": "standard-version --release-as major", "release:minor": "standard-version --release-as minor", "release:patch": "standard-version --release-as patch", "commit": "cz" }, "browserslist": { "production": [ ">= 0.5%", "not dead", "not op_mini all", "not ie <= 11" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog", "types": { "feat": { "description": "A new feature", "title": "Features" }, "fix": { "description": "A bug fix", "title": "Bug Fixes" }, "update": { "description": "Modify src files", "title": "Updates" }, "chore": { "description": "Other changes that don't modify src or test files", "title": "Chores" }, "test": { "description": "Adding missing tests or correcting existing tests", "title": "Tests" }, "style": { "description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)", "title": "Styles" }, "refactor": { "description": "A code change that neither fixes a bug nor adds a feature", "title": "Code Refactoring" }, "perf": { "description": "A code change that improves performance", "title": "Performance Improvements" }, "revert": { "description": "Reverts a previous commit", "title": "Reverts" }, "merge": { "description": "Merge branch", "title": "Merges" } } } }, "lint-staged": { "**/*/*.css": [ "stylelint" ], "**/*/*.{js,jsx,ts,tsx}": [ "eslint" ] }, "devDependencies": { "@commitlint/cli": "^17.6.1", "@commitlint/config-conventional": "^17.6.1", "@swc/helpers": "^0.5.1", "@total-typescript/ts-reset": "^0.4.2", "@types/node": "^18.15.11", "@typescript-eslint/eslint-plugin": "^5.58.0", "@typescript-eslint/parser": "^5.58.0", "@vitest/coverage-c8": "^0.31.0", "@vitest/ui": "^0.32.0", "commitizen": "^4.3.0", "core-js": "^3.30.1", "cross-env": "^7.0.3", "cypress": "^12.9.0", "cz-conventional-changelog": "^3.3.0", "editorconfig": "^1.0.2", "eslint": "^8.38.0", "eslint-config-proste": "^7.4.0", "eslint-plugin-cypress": "^2.13.2", "eslint-plugin-import": "^2.27.5", "eslint-plugin-import-newlines": "^1.3.1", "eslint-plugin-react": "^7.32.2", "eslint-plugin-react-hooks": "^4.6.0", "husky": "^8.0.3", "ip": "^1.1.8", "jsdom": "^22.0.0", "lint-staged": "^13.2.1", "postcss": "^8.4.21", "standard-version": "^9.5.0", "stylelint": "^15.5.0", "stylelint-config-recess-order": "^4.0.0", "stylelint-config-standard": "^33.0.0", "ts-node": "^10.9.1", "typescript": "^5.0.4", "vitest": "^0.31.0" } }