feat: Initialize project using Create React App
Showing
- package-lock.json 38374 additions, 11488 deletionspackage-lock.json
- package.json 34 additions, 1 deletionpackage.json
- src/App.css 0 additions, 38 deletionssrc/App.css
- src/App.test.tsx 0 additions, 9 deletionssrc/App.test.tsx
- src/index.css 0 additions, 13 deletionssrc/index.css
- src/logo.svg 0 additions, 1 deletionsrc/logo.svg
- src/reportWebVitals.ts 0 additions, 15 deletionssrc/reportWebVitals.ts
- src/setupTests.ts 0 additions, 5 deletionssrc/setupTests.ts
source diff could not be displayed: it is too large. Options to address this: view the blob.
... | @@ -3,6 +3,7 @@ | ... | @@ -3,6 +3,7 @@ |
"version": "0.1.0", | "version": "0.1.0", | ||
"private": true, | "private": true, | ||
"dependencies": { | "dependencies": { | ||
"@reduxjs/toolkit": "^1.9.3", | |||
"@testing-library/jest-dom": "^5.16.5", | "@testing-library/jest-dom": "^5.16.5", | ||
"@testing-library/react": "^13.4.0", | "@testing-library/react": "^13.4.0", | ||
"@testing-library/user-event": "^13.5.0", | "@testing-library/user-event": "^13.5.0", | ||
... | @@ -10,8 +11,13 @@ | ... | @@ -10,8 +11,13 @@ |
"@types/node": "^16.18.13", | "@types/node": "^16.18.13", | ||
"@types/react": "^18.0.28", | "@types/react": "^18.0.28", | ||
"@types/react-dom": "^18.0.11", | "@types/react-dom": "^18.0.11", | ||
"@types/react-redux": "^7.1.25", | |||
"i18next": "^22.4.10", | |||
"react": "^18.2.0", | "react": "^18.2.0", | ||
"react-dom": "^18.2.0", | "react-dom": "^18.2.0", | ||
"react-i18next": "^12.2.0", | |||
"react-query": "^3.39.3", | |||
"react-redux": "^8.0.5", | |||
"react-scripts": "5.0.1", | "react-scripts": "5.0.1", | ||
"typescript": "^4.9.5", | "typescript": "^4.9.5", | ||
"web-vitals": "^2.1.4" | "web-vitals": "^2.1.4" | ||
... | @@ -20,12 +26,24 @@ | ... | @@ -20,12 +26,24 @@ |
"start": "react-scripts start", | "start": "react-scripts start", | ||
"build": "react-scripts build", | "build": "react-scripts build", | ||
"test": "react-scripts test", | "test": "react-scripts test", | ||
"eject": "react-scripts eject" | "eject": "react-scripts eject", | ||
"storybook": "start-storybook -p 6006 -s public", | |||
"build-storybook": "build-storybook -s public" | |||
}, | }, | ||
"eslintConfig": { | "eslintConfig": { | ||
"extends": [ | "extends": [ | ||
"react-app", | "react-app", | ||
"react-app/jest" | "react-app/jest" | ||
], | |||
"overrides": [ | |||
{ | |||
"files": [ | |||
"**/*.stories.*" | |||
], | |||
"rules": { | |||
"import/no-anonymous-default-export": "off" | |||
} | |||
} | |||
] | ] | ||
}, | }, | ||
"browserslist": { | "browserslist": { | ||
... | @@ -39,5 +57,20 @@ | ... | @@ -39,5 +57,20 @@ |
"last 1 firefox version", | "last 1 firefox version", | ||
"last 1 safari version" | "last 1 safari version" | ||
] | ] | ||
}, | |||
"devDependencies": { | |||
"@storybook/addon-actions": "^6.5.16", | |||
"@storybook/addon-essentials": "^6.5.16", | |||
"@storybook/addon-interactions": "^6.5.16", | |||
"@storybook/addon-links": "^6.5.16", | |||
"@storybook/builder-webpack5": "^6.5.16", | |||
"@storybook/manager-webpack5": "^6.5.16", | |||
"@storybook/node-logger": "^6.5.16", | |||
"@storybook/preset-create-react-app": "^4.1.2", | |||
"@storybook/react": "^6.5.16", | |||
"@storybook/testing-library": "^0.0.13", | |||
"babel-plugin-named-exports-order": "^0.0.2", | |||
"prop-types": "^15.8.1", | |||
"webpack": "^5.75.0" | |||
} | } | ||
} | } |
src/App.css
deleted
100644 → 0
src/App.test.tsx
deleted
100644 → 0
src/index.css
deleted
100644 → 0
src/logo.svg
deleted
100644 → 0
src/reportWebVitals.ts
deleted
100644 → 0
src/setupTests.ts
deleted
100644 → 0
Please register or sign in to comment