/
SNight
/
ReactBlank
Обзор
Документация
Войти
/
SNight
/
ReactBlank
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
package.json
79 строк
3 KB
Serhii Yallin
chore(release): 1.0.1
13 апр 2025, 10:06
13 апр 2025, 10:06
37924c9
Код
Авторство
О чём код?
{ "name": "reactblank", "version": "1.0.1", "description": "BLank react project configuration", "license": "ISC", "author": "", "type": "commonjs", "main": "index.js", "scripts": { "build": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.js --env env=prod", "start": "webpack serve --config webpack/webpack.config.js --env env=dev", "stylelint": "stylelint \"src/**/*.{css,scss}\"", "stylelint:fix": "stylelint \"src/**/*.{css,scss}\" --fix", "lint": "eslint --fix", "format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\" --ignore-path ./.prettierignore", "check": "npm run stylelint:fix && npm run lint && npm run format", "commit": "npm run check && cz", "prepare": "husky" }, "devDependencies": { "@pmmmwh/react-refresh-webpack-plugin": "^0.5.16", "@svgr/webpack": "^8.1.0", "@types/node": "^22.14.1", "@types/react": "^19.1.1", "@types/react-dom": "^19.1.2", "@typescript-eslint/eslint-plugin": "^8.29.1", "@typescript-eslint/parser": "^8.29.1", "autoprefixer": "^10.4.21", "commitizen": "^4.3.1", "cross-env": "^7.0.3", "css-loader": "^7.1.2", "cssnano": "^7.0.6", "cz-conventional-changelog": "^3.3.0", "eslint": "^9.24.0", "eslint-config-prettier": "^10.1.2", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-jsx-a11y": "^6.10.2", "eslint-plugin-prettier": "^5.2.6", "eslint-plugin-react": "^7.37.5", "eslint-plugin-react-hooks": "^5.2.0", "html-webpack-plugin": "^5.6.3", "husky": "^9.1.7", "lint-staged": "^15.5.1", "mini-css-extract-plugin": "^2.9.2", "postcss-loader": "^8.1.1", "prettier": "^3.5.3", "react-refresh": "^0.17.0", "sass": "^1.86.3", "sass-loader": "^16.0.5", "standard-version": "^9.5.0", "style-loader": "^4.0.0", "stylelint": "^16.18.0", "stylelint-config-standard": "^38.0.0", "stylelint-order": "^6.0.4", "ts-loader": "^9.5.2", "typescript": "^5.8.3", "url-loader": "^4.1.1", "webpack": "^5.99.5", "webpack-cli": "^6.0.1", "webpack-dev-server": "^5.2.1", "webpack-merge": "^6.0.1" }, "dependencies": { "clsx": "^2.1.1", "react": "^19.1.0", "react-dom": "^19.1.0" }, "lint-staged": { "*.{css,scss}": "npm run stylelint:fix", "*.{js,jsx,ts,tsx}": "npm run lint", "*.{js,jsx,ts,tsx,json,css,scss,md}": "npm run format" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }