I am not failing enough
This commit is contained in:
parent
b46d1748ba
commit
0dbfc356d5
File diff suppressed because it is too large
Load Diff
14
package.json
14
package.json
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue