-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
RomanTkachev
committed
May 26, 2021
1 parent
6128ce3
commit d42ecd8
Showing
2 changed files
with
116 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
{ | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:react/recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier/@typescript-eslint", | ||
"plugin:prettier/recommended" | ||
], | ||
"plugins": ["react", "@typescript-eslint", "prettier"], | ||
"env": { | ||
"browser": true, | ||
"jasmine": true, | ||
"jest": true | ||
}, | ||
"rules": { | ||
"react/prop-types": 0, | ||
"@typescript-eslint/explicit-function-return-type": 0, | ||
"@typescript-eslint/no-explicit-any": 0, | ||
"prettier/prettier": [ | ||
"error", | ||
{ "singleQuote": true, "endOfLine": "auto" } | ||
], | ||
"react/display-name": 0 | ||
}, | ||
"settings": { | ||
"react": { | ||
"pragma": "React", | ||
"version": "detect" | ||
} | ||
}, | ||
"parser": "@typescript-eslint/parser" | ||
} | ||
{ | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:react/recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier/@typescript-eslint", | ||
"plugin:prettier/recommended" | ||
], | ||
"plugins": ["react", "@typescript-eslint", "prettier"], | ||
"env": { | ||
"browser": true, | ||
"jasmine": true, | ||
"jest": true | ||
}, | ||
"rules": { | ||
"react/prop-types": 0, | ||
"@typescript-eslint/explicit-function-return-type": 0, | ||
"@typescript-eslint/no-explicit-any": 0, | ||
"prettier/prettier": [ | ||
"error", | ||
{ "singleQuote": true, "endOfLine": "auto" } | ||
], | ||
"react/display-name": 0 | ||
}, | ||
"settings": { | ||
"react": { | ||
"pragma": "React", | ||
"version": "detect" | ||
} | ||
}, | ||
"parser": "@typescript-eslint/parser" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,84 +1,84 @@ | ||
{ | ||
"name": "admin", | ||
"version": "0.1.0", | ||
"private": true, | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@apollo/client": "^3.2.5", | ||
"@tabetalt/kit": "^1.20.0", | ||
"@testing-library/jest-dom": "^4.2.4", | ||
"@testing-library/react": "^9.3.2", | ||
"@testing-library/user-event": "^7.1.2", | ||
"@types/apollo-upload-client": "^14.1.0", | ||
"@types/jest": "^24.0.0", | ||
"@types/node": "^12.0.0", | ||
"@types/numeral": "^0.0.28", | ||
"@types/react": "^16.9.0", | ||
"@types/react-dom": "^16.9.0", | ||
"@types/react-table": "^7.0.25", | ||
"@types/yup": "^0.29.9", | ||
"dinero.js": "^1.8.1", | ||
"firebase": "^8.4.3", | ||
"formik": "^2.2.3", | ||
"framer-motion": "^2.6.15", | ||
"graphql": "^15.3.0", | ||
"history": "^5.0.0", | ||
"numeral": "^2.0.6", | ||
"react": "^16.13.1", | ||
"react-dom": "^16.13.1", | ||
"react-firebaseui": "^5.0.2", | ||
"react-router-dom": "^6.0.0-beta.0", | ||
"react-scripts": "3.4.3", | ||
"react-table": "^7.7.0", | ||
"theme-ui": "^0.4.0-rc.5", | ||
"typescript": "^4.0.2", | ||
"yup": "^0.29.3" | ||
}, | ||
"scripts": { | ||
"start": "react-scripts start", | ||
"build": "react-scripts build", | ||
"test": "react-scripts test --passWithNoTests", | ||
"test:ci": "yarn test --watchAll=false", | ||
"lint": "eslint \"src/**/*.ts{,x}\"", | ||
"eject": "react-scripts eject", | ||
"pretty": "prettier --write ./src", | ||
"generate": "graphql-codegen --config codegen.yml" | ||
}, | ||
"eslintConfig": { | ||
"extends": "react-app" | ||
}, | ||
"browserslist": { | ||
"production": [ | ||
">0.2%", | ||
"not dead", | ||
"not op_mini all" | ||
], | ||
"development": [ | ||
"last 1 chrome version", | ||
"last 1 firefox version", | ||
"last 1 safari version" | ||
] | ||
}, | ||
"devDependencies": { | ||
"@graphql-codegen/cli": "1.20.0", | ||
"@graphql-codegen/fragment-matcher": "2.0.1", | ||
"@graphql-codegen/typescript": "1.19.0", | ||
"@graphql-codegen/typescript-operations": "1.17.13", | ||
"@graphql-codegen/typescript-react-apollo": "2.2.1", | ||
"@types/dinero.js": "^1.6.5", | ||
"@typescript-eslint/eslint-plugin": "^4.11.1", | ||
"@typescript-eslint/parser": "^4.11.1", | ||
"eslint-config-prettier": "^7.1.0", | ||
"eslint-config-react": "^1.1.7", | ||
"eslint-plugin-prettier": "^3.3.0", | ||
"eslint-plugin-react": "^7.21.4", | ||
"husky": "^4.3.6", | ||
"prettier": "^2.2.1", | ||
"rimraf": "^3.0.2" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "yarn lint && yarn test:ci" | ||
} | ||
} | ||
} | ||
{ | ||
"name": "admin", | ||
"version": "0.1.0", | ||
"private": true, | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@apollo/client": "^3.2.5", | ||
"@tabetalt/kit": "^1.20.0", | ||
"@testing-library/jest-dom": "^4.2.4", | ||
"@testing-library/react": "^9.3.2", | ||
"@testing-library/user-event": "^7.1.2", | ||
"@types/apollo-upload-client": "^14.1.0", | ||
"@types/jest": "^24.0.0", | ||
"@types/node": "^12.0.0", | ||
"@types/numeral": "^0.0.28", | ||
"@types/react": "^16.9.0", | ||
"@types/react-dom": "^16.9.0", | ||
"@types/react-table": "^7.0.25", | ||
"@types/yup": "^0.29.9", | ||
"dinero.js": "^1.8.1", | ||
"firebase": "^8.4.3", | ||
"formik": "^2.2.3", | ||
"framer-motion": "^2.6.15", | ||
"graphql": "^15.3.0", | ||
"history": "^5.0.0", | ||
"numeral": "^2.0.6", | ||
"react": "^16.13.1", | ||
"react-dom": "^16.13.1", | ||
"react-firebaseui": "^5.0.2", | ||
"react-router-dom": "^6.0.0-beta.0", | ||
"react-scripts": "3.4.3", | ||
"react-table": "^7.7.0", | ||
"theme-ui": "^0.4.0-rc.5", | ||
"typescript": "^4.0.2", | ||
"yup": "^0.29.3" | ||
}, | ||
"scripts": { | ||
"start": "react-scripts start", | ||
"build": "react-scripts build", | ||
"test": "react-scripts test --passWithNoTests", | ||
"test:ci": "yarn test --watchAll=false", | ||
"lint": "eslint \"src/**/*.ts{,x}\"", | ||
"eject": "react-scripts eject", | ||
"pretty": "prettier --write ./src", | ||
"generate": "graphql-codegen --config codegen.yml" | ||
}, | ||
"eslintConfig": { | ||
"extends": "react-app" | ||
}, | ||
"browserslist": { | ||
"production": [ | ||
">0.2%", | ||
"not dead", | ||
"not op_mini all" | ||
], | ||
"development": [ | ||
"last 1 chrome version", | ||
"last 1 firefox version", | ||
"last 1 safari version" | ||
] | ||
}, | ||
"devDependencies": { | ||
"@graphql-codegen/cli": "1.20.0", | ||
"@graphql-codegen/fragment-matcher": "2.0.1", | ||
"@graphql-codegen/typescript": "1.19.0", | ||
"@graphql-codegen/typescript-operations": "1.17.13", | ||
"@graphql-codegen/typescript-react-apollo": "2.2.1", | ||
"@types/dinero.js": "^1.6.5", | ||
"@typescript-eslint/eslint-plugin": "^4.11.1", | ||
"@typescript-eslint/parser": "^4.11.1", | ||
"eslint-config-prettier": "^7.1.0", | ||
"eslint-config-react": "^1.1.7", | ||
"eslint-plugin-prettier": "^3.3.0", | ||
"eslint-plugin-react": "^7.21.4", | ||
"husky": "^4.3.6", | ||
"prettier": "^2.2.1", | ||
"rimraf": "^3.0.2" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "yarn lint && yarn test:ci" | ||
} | ||
} | ||
} |