diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 50 |
1 files changed, 20 insertions, 30 deletions
diff --git a/package.json b/package.json index 2730d2e..c109fc5 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,20 @@ { "name": "@polyfrost/nexus", + "type": "module", "version": "0.0.0", "private": true, + "engines": { + "pnpm": ">=8.0.0", + "npm": "pnpm", + "yarn": "pnpm", + "node": ">=18.17 <19 || >=20.1" + }, "scripts": { "build": "turbo run build", + "test": "turbo run test", "typecheck": "pnpm -r typecheck", - "format": "prettier --write .", - "lint": "turbo run lint", - "lint:fix": "turbo run lint -- --fix", + "lint": "eslint --cache .", + "lint:fix": "pnpm lint --fix", "clean": "git clean -qfX .", "prisma": "cd core && cargo prisma", "tauri": "pnpm desktop tauri", @@ -25,32 +32,15 @@ "codegen": "cargo test -p nexus-core api::tests::gen -- --exact" }, "devDependencies": { - "@babel/plugin-syntax-import-assertions": "^7.22.5", - "@ianvs/prettier-plugin-sort-imports": "^4.1.1", - "@storybook/react-vite": "^7.5.1", - "prettier": "^3.0.3", - "prettier-plugin-tailwindcss": "^0.5.6", - "turbo": "^1.10.16", - "turbo-ignore": "^1.10.16", - "typescript": "^5.2.2", - "vite": "^4.5.0" - }, - "overrides": { - "@types/node": "~18.17.19" - }, - "engines": { - "pnpm": ">=8.0.0", - "npm": "pnpm", - "yarn": "pnpm", - "node": ">=18.17 <19 || >=20.1" - }, - "eslintConfig": { - "root": true - }, - "pnpm": { - "overrides": { - "zod@<=3.22.2": ">=3.22.3", - "@babel/traverse@<7.23.2": ">=7.23.2" - } + "@flowr/eslint-config": "^2.1.1-alpha.18", + "@storybook/react-vite": "^7.6.7", + "eslint-plugin-jsx-a11y": "^6.8.0", + "eslint-plugin-react": "^7.33.2", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-refresh": "^0.4.5", + "turbo": "^1.11.3", + "turbo-ignore": "^1.11.3", + "typescript": "^5.3.3", + "vite": "^5.0.11" } } |