2025-11-19 10:17:50 +03:00
|
|
|
{
|
|
|
|
|
"name": "only-task",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "Modern React 19 + TypeScript 5 application",
|
|
|
|
|
"main": "index.js",
|
|
|
|
|
"scripts": {
|
2025-11-19 10:26:47 +03:00
|
|
|
"dev": "webpack serve --env port=3000 --env mode=development",
|
|
|
|
|
"build:prod": "webpack --env mode=production",
|
|
|
|
|
"build:dev": "webpack --env mode=development",
|
2025-11-19 10:17:50 +03:00
|
|
|
"lint": "eslint src --ext .ts,.tsx",
|
2025-11-19 10:30:11 +03:00
|
|
|
"lint:styles": "stylelint 'src/**/*.{css,scss}' --allow-empty-input",
|
2025-11-20 14:15:36 +03:00
|
|
|
"test:unit": "jest --config ./config/jest/jest.config.ts",
|
2025-11-19 10:26:47 +03:00
|
|
|
"type-check": "tsc --noEmit",
|
|
|
|
|
"prepare": "husky",
|
2025-11-19 22:15:25 +03:00
|
|
|
"pre-push": "pnpm type-check && pnpm lint && pnpm lint:styles && pnpm build:prod",
|
|
|
|
|
"storybook": "storybook dev -p 6006 -c config/storybook",
|
|
|
|
|
"build-storybook": "storybook build -c config/storybook"
|
2025-11-19 10:17:50 +03:00
|
|
|
},
|
|
|
|
|
"keywords": [],
|
|
|
|
|
"author": "",
|
|
|
|
|
"license": "ISC",
|
|
|
|
|
"dependencies": {
|
2025-11-20 09:26:01 +03:00
|
|
|
"classnames": "^2.5.1",
|
2025-11-19 20:24:19 +03:00
|
|
|
"gsap": "^3.13.0",
|
2025-11-19 10:17:50 +03:00
|
|
|
"react": "^19.0.0",
|
2025-11-19 20:24:19 +03:00
|
|
|
"react-dom": "^19.0.0",
|
|
|
|
|
"swiper": "^12.0.3"
|
2025-11-19 10:17:50 +03:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@babel/core": "^7.26.0",
|
|
|
|
|
"@babel/preset-env": "^7.26.0",
|
|
|
|
|
"@babel/preset-react": "^7.26.0",
|
|
|
|
|
"@babel/preset-typescript": "^7.26.0",
|
2025-11-19 20:24:19 +03:00
|
|
|
"@eslint/js": "^9.15.0",
|
2025-11-19 10:17:50 +03:00
|
|
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
|
2025-11-19 22:15:25 +03:00
|
|
|
"@storybook/addon-essentials": "^8.6.14",
|
|
|
|
|
"@storybook/addon-interactions": "^8.6.14",
|
|
|
|
|
"@storybook/addon-links": "^8.6.14",
|
|
|
|
|
"@storybook/addon-webpack5-compiler-babel": "^4.0.0",
|
|
|
|
|
"@storybook/react": "^8.6.14",
|
|
|
|
|
"@storybook/react-webpack5": "^8.6.14",
|
2025-11-19 10:17:50 +03:00
|
|
|
"@svgr/webpack": "^8.1.0",
|
2025-11-20 14:15:36 +03:00
|
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
|
|
|
"@testing-library/react": "^16.3.0",
|
|
|
|
|
"@types/jest": "^30.0.0",
|
2025-11-19 10:17:50 +03:00
|
|
|
"@types/node": "^22.0.0",
|
|
|
|
|
"@types/react": "^19.0.0",
|
|
|
|
|
"@types/react-dom": "^19.0.0",
|
|
|
|
|
"@types/webpack": "^5.28.5",
|
|
|
|
|
"@types/webpack-bundle-analyzer": "^4.7.0",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^8.16.0",
|
|
|
|
|
"@typescript-eslint/parser": "^8.16.0",
|
|
|
|
|
"babel-loader": "^9.2.0",
|
|
|
|
|
"css-loader": "^7.1.0",
|
|
|
|
|
"eslint": "^9.15.0",
|
|
|
|
|
"eslint-config-prettier": "^9.1.0",
|
|
|
|
|
"eslint-import-resolver-typescript": "^3.6.3",
|
|
|
|
|
"eslint-plugin-import": "^2.31.0",
|
|
|
|
|
"eslint-plugin-jest": "^28.9.0",
|
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.10.0",
|
|
|
|
|
"eslint-plugin-prettier": "^5.2.0",
|
|
|
|
|
"eslint-plugin-react": "^7.37.0",
|
|
|
|
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
|
|
|
"file-loader": "^6.2.0",
|
2025-11-19 20:24:19 +03:00
|
|
|
"globals": "^15.12.0",
|
2025-11-19 10:17:50 +03:00
|
|
|
"html-webpack-plugin": "^5.6.0",
|
2025-11-19 20:24:19 +03:00
|
|
|
"husky": "^9.1.0",
|
2025-11-20 14:15:36 +03:00
|
|
|
"jest": "^30.2.0",
|
2025-11-19 10:17:50 +03:00
|
|
|
"mini-css-extract-plugin": "^2.9.0",
|
|
|
|
|
"prettier": "^3.4.0",
|
|
|
|
|
"react-refresh": "^0.14.2",
|
2025-11-20 14:15:36 +03:00
|
|
|
"regenerator-runtime": "^0.14.1",
|
2025-11-19 10:17:50 +03:00
|
|
|
"sass": "^1.81.0",
|
|
|
|
|
"sass-loader": "^16.0.0",
|
2025-11-19 22:15:25 +03:00
|
|
|
"storybook": "^8.6.14",
|
2025-11-19 10:17:50 +03:00
|
|
|
"style-loader": "^4.0.0",
|
|
|
|
|
"stylelint": "^16.11.0",
|
|
|
|
|
"stylelint-config-standard-scss": "^13.1.0",
|
|
|
|
|
"stylelint-order": "^6.0.4",
|
|
|
|
|
"stylelint-semantic-groups": "^1.2.1",
|
|
|
|
|
"ts-loader": "^9.5.0",
|
|
|
|
|
"ts-node": "^10.9.2",
|
|
|
|
|
"typescript": "^5.7.0",
|
2025-11-19 20:24:19 +03:00
|
|
|
"typescript-eslint": "^8.16.0",
|
2025-11-19 10:17:50 +03:00
|
|
|
"webpack": "^5.96.0",
|
|
|
|
|
"webpack-bundle-analyzer": "^4.10.0",
|
|
|
|
|
"webpack-cli": "^5.1.0",
|
|
|
|
|
"webpack-dev-server": "^5.1.0"
|
|
|
|
|
}
|
|
|
|
|
}
|