mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-16 17:49:09 +00:00
fix all linting issues, upgrade most packages
This commit is contained in:
parent
c7774ddca3
commit
3c3af304f7
45 changed files with 1148 additions and 1848 deletions
39
package.json
39
package.json
|
@ -18,31 +18,34 @@
|
|||
],
|
||||
"scripts": {
|
||||
"build": "run-p -c build:*",
|
||||
"build:api": "yarn workspace @roleypoly/api run build",
|
||||
"build:design-system": "yarn workspace @roleypoly/design-system run build",
|
||||
"build:web": "yarn workspace @roleypoly/web run build",
|
||||
"create-component": "yarn workspace @roleypoly/design-system run create-component",
|
||||
"lint": "run-p -c lint:* --",
|
||||
"lint:eslint": "eslint",
|
||||
"lint:prettier": "cross-env prettier -c '**/*.{ts,tsx,css,yml,yaml,md,json,js,jsx,sh,gitignore,mdx,Dockerfile}'",
|
||||
"lint:stylelint": "cross-env stylelint '**/*.{ts,tsx}'",
|
||||
"lint:terraform": "terraform fmt -recursive -check ./terraform",
|
||||
"lint:stylelint": "cross-env stylelint 'packages/{web,design-system}/**/*.{ts,tsx}'",
|
||||
"lint:terraform": "terraform fmt -check -recursive",
|
||||
"lint:types": "tsc --noEmit",
|
||||
"lint:types-api": "yarn workspace @roleypoly/api run lint:types",
|
||||
"lint:types-interactions": "yarn workspace @roleypoly/interactions run lint:types",
|
||||
"lint:types-worker-utils": "yarn workspace @roleypoly/worker-utils run lint:types",
|
||||
"postinstall": "is-ci || husky install",
|
||||
"start": "run-p -c start:*",
|
||||
"start:bot": "yarn workspace @roleypoly/bot start",
|
||||
"start:design-system": "yarn workspace @roleypoly/design-system start",
|
||||
"start:interactions": "yarn workspace @roleypoly/interactions start",
|
||||
"start:web": "yarn workspace @roleypoly/web start",
|
||||
"start:worker": "yarn workspace @roleypoly/api start",
|
||||
"test": "jest"
|
||||
"test": "run-p -c test:* --",
|
||||
"test:api": "yarn workspace @roleypoly/api run test",
|
||||
"test:design-system": "yarn workspace @roleypoly/design-system run test",
|
||||
"test:misc-utils": "yarn workspace @roleypoly/misc-utils run test",
|
||||
"test:web": "yarn workspace @roleypoly/web run test"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/enzyme": "^3.10.9",
|
||||
"@types/lodash": "^4.14.171",
|
||||
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.2",
|
||||
"@stylelint/postcss-css-in-js": "^0.37.2",
|
||||
"@types/enzyme": "^3.10.11",
|
||||
"@types/lodash": "^4.14.178",
|
||||
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
|
||||
"enzyme": "^3.11.0",
|
||||
"enzyme-adapter-react-16": "^1.15.6",
|
||||
"husky": "^7.0.4",
|
||||
|
@ -51,17 +54,17 @@
|
|||
"jest-enzyme": "^7.1.2",
|
||||
"jest-react-hooks-shallow": "^1.5.1",
|
||||
"jest-styled-components": "^7.0.8",
|
||||
"lint-staged": "^11.0.0",
|
||||
"lint-staged": "^12.3.2",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"prettier": "^2.3.2",
|
||||
"prettier-plugin-organize-imports": "^2.2.0",
|
||||
"prettier-plugin-pkg": "^0.10.0",
|
||||
"prettier-plugin-sh": "^0.7.1",
|
||||
"stylelint": "^13.13.1",
|
||||
"stylelint-config-prettier": "^8.0.2",
|
||||
"stylelint-config-standard": "^22.0.0",
|
||||
"postcss-syntax": "^0.36.2",
|
||||
"prettier": "^2.5.1",
|
||||
"prettier-plugin-organize-imports": "^2.3.4",
|
||||
"prettier-plugin-pkg": "^0.11.1",
|
||||
"prettier-plugin-sh": "^0.8.1",
|
||||
"stylelint": "^14.3.0",
|
||||
"stylelint-config-recommended": "^6.0.0",
|
||||
"stylelint-config-styled-components": "^0.1.1",
|
||||
"stylelint-prettier": "^1.2.0",
|
||||
"stylelint-processor-styled-components": "^1.10.0",
|
||||
"ts-jest": "^27.1.3",
|
||||
"typescript": "^4.5.5"
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue