chore: clean up package.json and tsconfig (#11757)

This commit is contained in:
Kayla Washburn-Love 2024-01-24 13:53:44 -07:00 committed by GitHub
parent ecae6f9135
commit 3d76e1b55c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 531 additions and 566 deletions

View File

@ -14,7 +14,7 @@
"format:write:only": "prettier --cache --write",
"lint": "pnpm run lint:types && pnpm exec jest --selectProjects lint",
"lint:fix": "FIX=true pnpm lint",
"lint:types": "tsc --noEmit",
"lint:types": "tsc -p .",
"playwright:install": "playwright install --with-deps chromium",
"playwright:test": "playwright test --config=e2e/playwright.config.ts",
"gen:provisioner": "protoc --plugin=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=./e2e/ --ts_proto_opt=outputJsonMethods=false,outputEncodeMethods=encode-no-creation,outputClientImpl=false,nestJs=false,outputPartialMethods=false,fileSuffix=Generated,suffix=hey -I ../provisionersdk/proto ../provisionersdk/proto/provisioner.proto && pnpm exec prettier --ignore-path '/dev/null' --cache --write './e2e/provisionerGenerated.ts'",
@ -43,7 +43,6 @@
"@mui/system": "5.14.0",
"@mui/utils": "5.14.11",
"@tanstack/react-query-devtools": "4.35.3",
"@vitejs/plugin-react": "4.1.0",
"ansi-to-html": "0.7.2",
"axios": "1.6.0",
"canvas": "2.11.0",
@ -57,11 +56,8 @@
"date-fns": "2.30.0",
"dayjs": "1.11.4",
"emoji-mart": "5.4.0",
"eslint-plugin-testing-library": "6.1.0",
"eventsourcemock": "2.0.0",
"formik": "2.4.1",
"front-matter": "4.0.2",
"jest-environment-jsdom": "29.5.0",
"lodash": "4.17.21",
"monaco-editor": "0.44.0",
"pretty-bytes": "6.1.0",
@ -82,14 +78,11 @@
"remark-gfm": "4.0.0",
"rollup-plugin-visualizer": "5.9.0",
"semver": "7.5.3",
"ts-proto": "1.164.0",
"ts-prune": "0.10.3",
"tzdata": "1.0.30",
"ua-parser-js": "1.0.33",
"ufuzzy": "npm:@leeoniya/ufuzzy@1.0.10",
"unique-names-generator": "4.7.1",
"uuid": "9.0.0",
"vite": "4.5.2",
"xterm": "5.2.0",
"xterm-addon-canvas": "0.5.0",
"xterm-addon-fit": "0.8.0",
@ -135,6 +128,7 @@
"@types/uuid": "9.0.2",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"@vitejs/plugin-react": "4.1.0",
"chromatic": "9.0.0",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
@ -147,10 +141,13 @@
"eslint-plugin-react": "7.33.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.12",
"eslint-plugin-testing-library": "6.1.0",
"eslint-plugin-unicorn": "49.0.0",
"eventsourcemock": "2.0.0",
"express": "4.18.2",
"jest": "29.6.2",
"jest-canvas-mock": "2.5.2",
"jest-environment-jsdom": "29.5.0",
"jest-fetch-mock": "3.0.3",
"jest-location-mock": "2.0.0",
"jest-runner-eslint": "2.1.0",
@ -165,7 +162,10 @@
"storybook-addon-react-router-v6": "2.0.0",
"storybook-react-context": "0.6.0",
"ts-node": "10.9.1",
"ts-proto": "1.164.0",
"ts-prune": "0.10.3",
"typescript": "5.2.2",
"vite": "4.5.2",
"vite-plugin-checker": "0.6.0",
"vite-plugin-turbosnap": "1.0.2"
},

File diff suppressed because it is too large Load Diff

View File

@ -9,7 +9,9 @@
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"outDir": "build/",
"preserveWatchOutput": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,