114 lines
2.9 KiB
JSON
114 lines
2.9 KiB
JSON
{
|
|
"name": "evocalculator.client",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@ant-design/icons": "^4.6.2",
|
|
"@apollo/client": "^3.3.13",
|
|
"@craco/craco": "^6.1.1",
|
|
"@testing-library/jest-dom": "^5.11.4",
|
|
"@testing-library/react": "^11.1.0",
|
|
"@testing-library/user-event": "^12.1.10",
|
|
"antd": "^4.15.5",
|
|
"axios": "^0.21.1",
|
|
"babel-plugin-transform-imports": "^2.0.0",
|
|
"craco-antd": "^1.19.0",
|
|
"craco-esbuild": "^0.3.4",
|
|
"dayjs": "^1.10.4",
|
|
"graphql": "^15.5.0",
|
|
"lodash": "^4.17.21",
|
|
"mobx": "^6.1.8",
|
|
"mobx-react-lite": "^3.2.0",
|
|
"pluralize": "^8.0.0",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-router": "^5.2.0",
|
|
"react-router-dom": "^5.2.0",
|
|
"react-scripts": "^4.0.3",
|
|
"rebass": "^4.0.7",
|
|
"styled-components": "^5.2.3",
|
|
"typescript": "^4.2.4",
|
|
"use-debounce": "^6.0.1",
|
|
"uuid": "^8.3.2",
|
|
"validator": "^13.5.2",
|
|
"webpack": "4.44.2"
|
|
},
|
|
"devDependencies": {
|
|
"@storybook/addon-actions": "^6.2.9",
|
|
"@storybook/addon-essentials": "^6.2.9",
|
|
"@storybook/addon-links": "^6.2.9",
|
|
"@storybook/node-logger": "^6.2.9",
|
|
"@storybook/preset-ant-design": "^0.0.2",
|
|
"@storybook/preset-create-react-app": "^3.1.7",
|
|
"@storybook/react": "^6.2.9",
|
|
"@types/jest": "^26.0.15",
|
|
"@types/lodash": "^4.14.168",
|
|
"@types/node": "^12.0.0",
|
|
"@types/pluralize": "^0.0.29",
|
|
"@types/react": "^17.0.0",
|
|
"@types/react-dom": "^17.0.0",
|
|
"@types/react-router-dom": "^5.1.7",
|
|
"@types/rebass": "^4.0.8",
|
|
"@types/styled-components": "^5.1.9",
|
|
"@types/uuid": "^8.3.0",
|
|
"commitizen": "^4.2.3",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"source-map-explorer": "^2.5.2"
|
|
},
|
|
"resolutions": {
|
|
"babel-loader": "8.1.0"
|
|
},
|
|
"scripts": {
|
|
"test": "react-scripts test",
|
|
"eject": "react-scripts eject",
|
|
"start": "craco start",
|
|
"build": "craco build",
|
|
"eslint": "eslint ./src",
|
|
"eslint:fix": "eslint ./src --fix",
|
|
"commit": "git-cz",
|
|
"analyze": "source-map-explorer 'build/static/js/*.js'",
|
|
"storybook": "start-storybook -p 6006 -s public",
|
|
"build-storybook": "build-storybook -s public"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app",
|
|
"react-app/jest"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"**/*.stories.*"
|
|
],
|
|
"rules": {
|
|
"import/no-anonymous-default-export": "off"
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"**/*.stories.*"
|
|
],
|
|
"rules": {
|
|
"import/no-anonymous-default-export": "off"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|