kitchen sink test

This commit is contained in:
MapleLeaf
2021-12-26 12:00:22 -06:00
parent d5815cbec6
commit d10618e3c1
9 changed files with 2303 additions and 154 deletions

View File

@@ -17,9 +17,9 @@
"lint": "eslint --ext js,ts,tsx .",
"lint-fix": "pnpm lint -- --fix",
"format": "prettier --write .",
"test": "vitest",
"test-watch": "vitest --watch",
"coverage": "vitest --coverage",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"test-watch": "pnpm test -- --watch",
"coverage": "pnpm test -- --coverage",
"typecheck": "tsc --noEmit",
"playground": "nodemon --exec esmo --ext ts,tsx ./playground/main.tsx"
},
@@ -42,11 +42,15 @@
},
"devDependencies": {
"@itsmapleleaf/configs": "^1.1.2",
"@types/jest": "^27.0.3",
"@types/lodash-es": "^4.17.5",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"c8": "^7.10.0",
"discord.js": "^13.4.0",
"dotenv": "^10.0.0",
"esbuild": "latest",
"esbuild-jest": "^0.5.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
@@ -56,13 +60,14 @@
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unicorn": "^39.0.0",
"esmo": "^0.13.0",
"jest": "^27.4.5",
"lodash-es": "^4.17.21",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"react": "^17.0.2",
"tsup": "^5.11.9",
"typescript": "^4.5.4",
"vite": "^2.7.6",
"vitest": "^0.0.108"
"type-fest": "^2.8.0",
"typescript": "^4.5.4"
},
"resolutions": {
"esbuild": "latest"