spacedrive/packages/client/package.json
Vítor Vasconcellos 08c42a36fe
[ENG-1624] E2E Tests (#2192)
* Basic cypress test

* Add e2e test command

* Add full e2e test for creating and deleting a library

* Add cypress to CI

* Fix cypress CI
 - Use arm macos for running cypress
 - Setup rust on cypress job
 - Increase cypress CI timeout

* Remove unused APPLE_SIGNING_IDENTITY envvar

* Update deps again + Try to fix Cypress CI setup

* Update deps again

* Only test default location if it exists

* Use latest v18 NodeJS in CI

* Increase minimum node version due to updated dependency
 - @typescript-eslint/eslint-plugin now requires node >=18.18

* Fix testing failing for optional default locations

* Enable video recording
 - Fix screenshot and video artifact uploading

* Fix location test
 - Use correct location name, instead of trying to derive it from the internal id
2024-03-19 20:22:17 +00:00

37 lines
940 B
JSON

{
"name": "@sd/client",
"private": true,
"sideEffects": false,
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"test": "jest",
"lint": "eslint src --cache",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"typecheck": "tsc -b"
},
"dependencies": {
"@oscartbeaumont-sd/rspc-client": "=0.0.0-main-dc31e5b2",
"@oscartbeaumont-sd/rspc-react": "=0.0.0-main-dc31e5b2",
"@solid-primitives/deep": "^0.2.4",
"@tanstack/react-query": "^4.36.1",
"@tanstack/solid-query": "^5.17.9",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"fast-equals": "^5.0.1",
"plausible-tracker": "^0.3.8",
"react-hook-form": "^7.47.0",
"solid-js": "^1.8.8",
"zod": "~3.22.4"
},
"devDependencies": {
"@sd/config": "workspace:*",
"@types/react": "^18.2.67",
"typescript": "^5.4.2"
},
"peerDependencies": {
"react": "^18.2"
}
}