mirror of
https://github.com/aleleba/create-react-component-library.git
synced 2026-07-16 20:17:21 -06:00
Update 12 safe dependencies to their latest versions: - Storybook ecosystem (4 packages): ^10.4.6 → ^10.5.0 - @types/node: ^26.0.0 → ^26.1.1 - cypress: ^15.17.0 → ^15.18.1 - globals: ^17.6.0 → ^17.7.0 - jest-fetch-mock: ^3.0.3 → ^4.2.0 - ts-loader: ^9.6.1 → ^9.6.2 - webpack: ^5.107.2 → ^5.108.4 - webpack-cli: ^7.0.3 → ^7.2.1 Skipped due to peer dependency conflicts: - typescript (7.x incompatible with typescript-eslint 8.x) - eslint (10.x incompatible with eslint-plugin-react 7.x)
120 lines
3.5 KiB
JSON
120 lines
3.5 KiB
JSON
{
|
|
"name": "@aleleba/create-react-component-library",
|
|
"version": "1.4.2",
|
|
"description": "A starter kit for create a React component Library with storybook",
|
|
"bin": "./bin/cli.js",
|
|
"main": "dist/index.js",
|
|
"types": "dist/types/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/types/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.js"
|
|
},
|
|
"./dist/index.css": "./dist/index.css"
|
|
},
|
|
"scripts": {
|
|
"start": "npm run storybook",
|
|
"build": "webpack",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"storybook": "storybook dev -p 3000",
|
|
"build-storybook": "storybook build",
|
|
"check-updates": "npx npm-check-updates -u && npm i",
|
|
"cy:open": "npx cypress open",
|
|
"cy:run": "npx cypress run --headless --component"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/aleleba/create-react-component-library.git"
|
|
},
|
|
"keywords": [
|
|
"create",
|
|
"react",
|
|
"component",
|
|
"library",
|
|
"typescript"
|
|
],
|
|
"author": "Alejandro Lembke Barrientos",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/aleleba/create-react-component-library/issues"
|
|
},
|
|
"homepage": "https://github.com/aleleba/create-react-component-library#readme",
|
|
"devDependencies": {
|
|
"@babel/core": "^8.0.1",
|
|
"@babel/preset-env": "^8.0.2",
|
|
"@babel/preset-react": "^8.0.1",
|
|
"@babel/preset-typescript": "^8.0.1",
|
|
"@babel/register": "^8.0.1",
|
|
"@eslint/js": "^9.39.4",
|
|
"@mdx-js/react": "^3.1.1",
|
|
"@storybook/addon-docs": "^10.5.0",
|
|
"@storybook/addon-links": "^10.5.0",
|
|
"@storybook/addon-styling-webpack": "^3.0.2",
|
|
"@storybook/addon-webpack5-compiler-babel": "^4.0.1",
|
|
"@storybook/cli": "^10.5.0",
|
|
"@storybook/preset-scss": "^1.0.3",
|
|
"@storybook/react-webpack5": "^10.5.0",
|
|
"@testing-library/dom": "^10.4.1",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^26.1.1",
|
|
"@types/react": "^19.2.17",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@types/webpack": "^5.28.5",
|
|
"babel-loader": "^10.1.1",
|
|
"clean-webpack-plugin": "^4.0.0",
|
|
"css-loader": "^7.1.4",
|
|
"css-minimizer-webpack-plugin": "^8.0.0",
|
|
"cypress": "^15.18.1",
|
|
"dotenv": "^17.4.2",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-storybook": "^10.4.6",
|
|
"eslint-webpack-plugin": "^6.0.0",
|
|
"globals": "^17.7.0",
|
|
"html-webpack-plugin": "^5.6.7",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"jest": "^30.4.2",
|
|
"jest-environment-jsdom": "^30.4.1",
|
|
"jest-fetch-mock": "^4.2.0",
|
|
"mini-css-extract-plugin": "^2.10.2",
|
|
"react": "^19.2.7",
|
|
"react-dom": "^19.2.7",
|
|
"resolve-ts-aliases": "^1.0.1",
|
|
"sass": "^1.101.0",
|
|
"sass-loader": "^17.0.0",
|
|
"storybook": "^10.5.0",
|
|
"style-loader": "^4.0.0",
|
|
"terser-webpack-plugin": "^5.6.1",
|
|
"ts-jest": "^29.4.11",
|
|
"ts-loader": "^9.6.2",
|
|
"ts-node": "^10.9.2",
|
|
"tsconfig-paths-webpack-plugin": "^4.2.0",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.61.1",
|
|
"url-loader": "^4.1.1",
|
|
"webpack": "^5.108.4",
|
|
"webpack-cli": "^7.2.1",
|
|
"webpack-node-externals": "^3.0.0"
|
|
},
|
|
"overrides": {
|
|
"ts-jest": {
|
|
"@babel/core": "^8.0.1"
|
|
},
|
|
"js-yaml": "^4.2.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0"
|
|
},
|
|
"files": [
|
|
"./dist"
|
|
]
|
|
}
|