2023-03-03 16:24:15 +11:00
|
|
|
{
|
|
|
|
"name": "pokertk",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"dependencies": {
|
2023-05-10 00:13:33 +10:00
|
|
|
"@emotion/react": "^11.11.0",
|
|
|
|
"@emotion/styled": "^11.11.0",
|
|
|
|
"@mui/icons-material": "^5.11.16",
|
2023-05-31 14:43:47 +10:00
|
|
|
"@mui/material": "^5.13.1",
|
|
|
|
"@reduxjs/toolkit": "^1.9.5",
|
|
|
|
"framer-motion": "^10.12.12",
|
2023-03-03 16:24:15 +11:00
|
|
|
"react": "^18.2.0",
|
|
|
|
"react-dom": "^18.2.0",
|
2023-04-17 22:16:25 +10:00
|
|
|
"react-lazy-load-image-component": "^1.5.6",
|
2023-03-03 17:37:16 +11:00
|
|
|
"react-redux": "^8.0.5",
|
2023-03-03 16:24:15 +11:00
|
|
|
"react-scripts": "5.0.1",
|
|
|
|
"typescript": "^4.9.5",
|
|
|
|
"web-vitals": "^2.1.4"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"start": "react-scripts start",
|
|
|
|
"build": "react-scripts build",
|
|
|
|
"test": "react-scripts test",
|
2023-04-02 15:49:35 +10:00
|
|
|
"test:watchAll": "react-scripts test --watchAll",
|
2023-03-18 22:52:01 +11:00
|
|
|
"eject": "react-scripts eject",
|
|
|
|
"prettier": "prettier \"src/**/*.{js,jsx,ts,tsx,css,scss,md}\" --write",
|
|
|
|
"format:check": "npm run prettier -- --check",
|
2023-03-18 23:21:20 +11:00
|
|
|
"format:write": "npm run prettier -- --write",
|
2023-03-18 23:38:44 +11:00
|
|
|
"types:check": "tsc --noEmit --pretty",
|
2023-03-18 23:21:20 +11:00
|
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --no-error-on-unmatched-pattern",
|
|
|
|
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx src --fix --no-error-on-unmatched-pattern",
|
2023-03-22 21:16:47 +11:00
|
|
|
"fix": "npm run format:write && npm run lint:fix",
|
2023-05-15 18:51:54 +10:00
|
|
|
"storybook": "storybook dev -p 6006 -s public",
|
|
|
|
"build-storybook": "storybook build -s public",
|
2023-05-11 23:34:44 +10:00
|
|
|
"chromatic": "npx chromatic --project-token=chpt_df2240e310a4eff"
|
2023-03-03 16:24:15 +11:00
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"extends": [
|
|
|
|
"react-app",
|
|
|
|
"react-app/jest"
|
2023-03-22 21:16:47 +11:00
|
|
|
],
|
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"files": [
|
|
|
|
"**/*.stories.*"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"import/no-anonymous-default-export": "off"
|
|
|
|
}
|
|
|
|
}
|
2023-03-03 16:24:15 +11:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"browserslist": {
|
|
|
|
"production": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not op_mini all"
|
|
|
|
],
|
|
|
|
"development": [
|
|
|
|
"last 1 chrome version",
|
|
|
|
"last 1 firefox version",
|
|
|
|
"last 1 safari version"
|
|
|
|
]
|
2023-03-03 17:35:00 +11:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-05-31 14:43:47 +10:00
|
|
|
"@storybook/addon-actions": "^7.0.12",
|
|
|
|
"@storybook/addon-essentials": "^7.0.12",
|
|
|
|
"@storybook/addon-interactions": "^7.0.12",
|
|
|
|
"@storybook/addon-links": "^7.0.12",
|
|
|
|
"@storybook/node-logger": "^7.0.12",
|
|
|
|
"@storybook/preset-create-react-app": "^7.0.12",
|
|
|
|
"@storybook/react": "^7.0.12",
|
|
|
|
"@storybook/react-webpack5": "^7.0.12",
|
|
|
|
"@storybook/testing-library": "^0.1.1-future.2",
|
2023-03-18 22:40:36 +11:00
|
|
|
"@testing-library/jest-dom": "^5.16.5",
|
|
|
|
"@testing-library/react": "^13.4.0",
|
|
|
|
"@testing-library/user-event": "^13.5.0",
|
|
|
|
"@types/jest": "^27.5.2",
|
2023-05-31 14:43:47 +10:00
|
|
|
"@types/node": "^16.18.31",
|
|
|
|
"@types/react": "^18.2.6",
|
|
|
|
"@types/react-dom": "^18.2.4",
|
|
|
|
"@types/react-lazy-load-image-component": "^1.5.3",
|
2023-05-31 19:39:19 +10:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.59.8",
|
|
|
|
"@typescript-eslint/parser": "^5.59.8",
|
2023-03-22 21:16:47 +11:00
|
|
|
"babel-plugin-named-exports-order": "^0.0.2",
|
2023-05-11 23:30:16 +10:00
|
|
|
"chromatic": "^6.17.4",
|
2023-05-31 14:43:47 +10:00
|
|
|
"eslint": "^8.41.0",
|
2023-03-18 22:47:48 +11:00
|
|
|
"eslint-config-airbnb": "^19.0.4",
|
2023-05-31 14:43:47 +10:00
|
|
|
"eslint-config-prettier": "^8.8.0",
|
2023-03-18 22:47:48 +11:00
|
|
|
"eslint-plugin-import": "^2.27.5",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
2023-03-18 23:38:44 +11:00
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2023-03-18 22:47:48 +11:00
|
|
|
"eslint-plugin-react": "^7.32.2",
|
|
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
2023-03-18 23:31:08 +11:00
|
|
|
"husky": "^8.0.3",
|
2023-05-31 14:43:47 +10:00
|
|
|
"lint-staged": "^13.2.2",
|
2023-03-26 18:39:04 +11:00
|
|
|
"msw": "^1.2.1",
|
2023-05-31 14:43:47 +10:00
|
|
|
"prettier": "^2.8.8",
|
2023-03-22 21:16:47 +11:00
|
|
|
"prop-types": "^15.8.1",
|
2023-05-31 14:43:47 +10:00
|
|
|
"storybook": "^7.0.12",
|
2023-03-22 21:29:42 +11:00
|
|
|
"tsconfig-paths-webpack-plugin": "^4.0.1",
|
2023-05-31 14:43:47 +10:00
|
|
|
"webpack": "^5.83.1"
|
2023-05-11 23:34:44 +10:00
|
|
|
},
|
|
|
|
"readme": "ERROR: No README data found!",
|
|
|
|
"_id": "pokertk@0.1.0"
|
2023-03-03 16:24:15 +11:00
|
|
|
}
|