headplane/package.json

69 lines
1.9 KiB
JSON
Raw Normal View History

{
2024-03-25 17:50:58 -04:00
"name": "headplane",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
2024-05-15 21:54:15 -04:00
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
2024-03-25 17:50:58 -04:00
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
2024-03-28 19:40:06 -04:00
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@monaco-editor/react": "^4.6.0",
2024-06-23 18:18:01 -04:00
"@primer/octicons-react": "^19.10.0",
2024-06-03 22:51:45 -04:00
"@react-aria/toast": "3.0.0-beta.12",
"@react-stately/toast": "3.0.0-beta.4",
2024-05-15 22:26:36 -04:00
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^2.9.2",
"@remix-run/serve": "^2.9.2",
"clsx": "^2.1.1",
2024-06-23 18:18:01 -04:00
"isbot": "^5.1.9",
"oauth4webapi": "^2.11.1",
"react": "19.0.0-beta-26f2496093-20240514",
2024-06-03 22:51:45 -04:00
"react-aria-components": "^1.2.1",
"react-dom": "19.0.0-beta-26f2496093-20240514",
"remix-utils": "^7.6.0",
"tailwind-merge": "^2.3.0",
2024-06-03 22:51:45 -04:00
"tailwindcss-react-aria-components": "^1.1.3",
2024-06-23 18:18:01 -04:00
"undici": "^6.19.2",
"usehooks-ts": "^3.1.0",
2024-06-23 18:18:01 -04:00
"yaml": "^2.4.5",
"zod": "^3.23.8"
2024-03-25 17:50:58 -04:00
},
"devDependencies": {
2024-05-15 22:26:36 -04:00
"@remix-run/dev": "^2.9.2",
"@types/react": "npm:types-react@beta",
"@types/react-dom": "npm:types-react-dom@beta",
2024-03-25 17:50:58 -04:00
"autoprefixer": "^10.4.19",
"babel-plugin-react-compiler": "0.0.0-experimental-c23de8d-20240515",
2024-03-25 17:50:58 -04:00
"eslint": "^8.57.0",
2024-05-15 21:54:15 -04:00
"eslint-config-tale": "^2.0.4",
2024-03-25 17:50:58 -04:00
"postcss": "^8.4.38",
2024-06-23 18:18:01 -04:00
"tailwindcss": "^3.4.4",
"tailwindcss-animate": "^1.0.7",
2024-06-23 18:18:01 -04:00
"typescript": "^5.5.2",
"vite": "^5.3.1",
"vite-plugin-babel": "^1.2.0",
2024-03-25 17:50:58 -04:00
"vite-tsconfig-paths": "^4.2.1"
},
"overrides": {
"@types/react": "npm:types-react@beta",
"@types/react-dom": "npm:types-react-dom@beta"
},
2024-03-25 17:50:58 -04:00
"engines": {
2024-05-21 23:50:43 -04:00
"node": ">=20",
"pnpm": ">=9 <10"
},
"pnpm": {
"patchedDependencies": {
2024-06-03 22:51:45 -04:00
"@react-aria/overlays@3.22.1": "patches/@react-aria__overlays@3.22.1.patch"
}
2024-03-25 17:50:58 -04:00
}
}