Initialize project using Create React App

This commit is contained in:
Christian Medina
2024-08-26 19:56:50 -04:00
committed by Christian Medina
commit 51da011d12
83 changed files with 22109 additions and 0 deletions

61
package.json Normal file
View File

@@ -0,0 +1,61 @@
{
"name": "fibonacci-fold",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fontsource/cardo": "^5.0.14",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"firebase": "^10.13.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:storybook/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@chromatic-com/storybook": "^1.7.0",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/preset-create-react-app": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-webpack5": "^8.2.9",
"@storybook/test": "^8.2.9",
"eslint-plugin-storybook": "^0.8.0",
"firebase-tools": "^13.15.4",
"prop-types": "^15.8.1",
"storybook": "^8.2.9",
"webpack": "^5.94.0"
},
"packageManager": "yarn@4.4.1"
}