File size: 2,389 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
{
"name": "playground",
"description": "Playground Project for https://github.com/piotrwitek/react-redux-typescript-guide",
"version": "1.0.0",
"private": true,
"author": "Piotr Witek <piotrek.witek@gmail.com> (http://piotrwitek.github.io/)",
"repository": "https://github.com/piotrwitek/react-redux-typescript-guide.git",
"license": "MIT",
"main": "src/index.tsx",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"reinstall": "rm -rf node_modules && npm install",
"ci-check": "npm run lint && npm run tsc && npm run test",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"tsc": "tsc -p ./ --noEmit",
"tsc:watch": "tsc -p ./ --noEmit -w",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"@lagunovsky/redux-react-router": "2.2.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.1.1",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.5.0",
"@types/node": "16.11.33",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"@types/react-redux": "7.1.24",
"@types/react-router-dom": "5.3.3",
"axios": "0.26.1",
"cuid": "2.1.8",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-redux": "7.2.8",
"react-router-dom": "6.3.0",
"react-scripts": "5.0.1",
"redux": "4.1.2",
"redux-observable": "1.2.0",
"redux-thunk": "2.4.1",
"reselect": "4.0.0",
"rxjs": "6.5.3",
"tslib": "2.4.0",
"typesafe-actions": "5.1.0",
"utility-types": "3.10.0"
},
"devDependencies": {
"@storybook/addon-actions": "5.2.5",
"@storybook/addon-links": "5.2.5",
"@storybook/addon-storyshots": "5.2.5",
"@storybook/addons": "5.2.5",
"@storybook/react": "5.2.5",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"require-context.macro": "1.2.2",
"typescript": "4.6.4",
"web-vitals": "2.1.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
|