I am not failing enough

This commit is contained in:
ElectronicPanopticon 2024-05-28 18:47:52 -07:00
parent b46d1748ba
commit 0dbfc356d5
2 changed files with 3591 additions and 1449 deletions

5026
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -6,12 +6,13 @@
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint . --ext .ts,.tsx,.js,.jsx",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc",
"test": "jest --watch --config=jest.config.ts"
},
"dependencies": {
"@eslint/js": "^9.3.0",
"@remix-run/express": "^2.9.1",
"@remix-run/node": "^2.9.0",
"@remix-run/react": "^2.9.0",
@ -55,10 +56,21 @@
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.1.6",
"typescript-eslint": "^7.11.0",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.2.1"
},
"engines": {
"node": ">=18.0.0"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
}
}