mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 18:04:42 +08:00
* initial commit for testing the github action. * Improvements to the Github action. * Add docker caching. * Fix an issue in the github action. * Another fix for the action. * Just delete the db after the tests. * Add a supabase app to the playwright-tests. * Delete .env.testing. * Remove the docker image caching from the Playwright github action. * Add a README.md. * Add an example test for the table editor. * Ignore the generated keys.json. * Add commands for running and writing tests. * Remove Auth tests. * Only show the react-query tool when not in test mode. * Add data-testids to the buttons and use them in the test. * Handle a case where SUPABASE_URL isn't defined. * Fix the button test id. * Remove some dependency. * Try setting a timeout for an action. * Add timeout to another action. * Add some timeouts before the save button. * Add some timeout before clicking save. * Enable the video recording only during local testing. * Minor fixes. * Expand the README.
55 lines
2.3 KiB
JSON
55 lines
2.3 KiB
JSON
{
|
|
"name": "supabase",
|
|
"description": "The open source Firebase alternative.",
|
|
"version": "0.0.0",
|
|
"author": "Supabase, Inc.",
|
|
"license": "Apache-2.0",
|
|
"private": true,
|
|
"workspaces": ["apps/*", "apps/docs/spec/parser", "tests", "playwright-tests", "packages/*"],
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"build:studio": "turbo run build --filter=studio",
|
|
"dev": "turbo run dev --parallel",
|
|
"dev:reference": "turbo run dev --filter=reference --parallel",
|
|
"dev:studio": "turbo run dev --filter=studio --parallel",
|
|
"dev:docs": "turbo run dev --filter=docs --parallel",
|
|
"dev:www": "turbo run dev --filter=www --parallel",
|
|
"dev:database-design": "turbo run dev --filter=database-design --parallel",
|
|
"lint": "turbo run lint",
|
|
"typecheck": "turbo --continue typecheck",
|
|
"format": "prettier --write \"apps/**/*.{js,jsx,ts,tsx,css,md,mdx,json}\"",
|
|
"docker:dev": "cd docker && docker compose -f docker-compose.yml -f ./dev/docker-compose.dev.yml up --renew-anon-volumes",
|
|
"docker:up": "cd docker && docker compose up",
|
|
"docker:down": "cd docker && docker compose -f docker-compose.yml -f ./dev/docker-compose.dev.yml down --remove-orphans",
|
|
"docker:remove": "cd docker && docker compose -f docker-compose.yml -f ./dev/docker-compose.dev.yml rm -vfs",
|
|
"test:docs": "turbo run test --filter=docs",
|
|
"test:ui": "turbo run test --filter=ui",
|
|
"test:studio": "turbo run test --filter=studio",
|
|
"test:playwright": "npm --prefix playwright-tests run test",
|
|
"perf:kong": "ab -t 5 -c 20 -T application/json http://localhost:8000/",
|
|
"perf:meta": "ab -t 5 -c 20 -T application/json http://localhost:5555/tables",
|
|
"generate:types": "supabase gen types typescript --local > ./supabase/functions/common/database-types.ts"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-custom": "*",
|
|
"prettier": "^4.0.0-alpha.8",
|
|
"prettier-plugin-sql-cst": "^0.11.0",
|
|
"sass": "^1.70.0",
|
|
"supabase": "^1.142.1",
|
|
"turbo": "^1.12.3"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/supabase/supabase.git"
|
|
},
|
|
"engines": {
|
|
"npm": ">=9.0.0",
|
|
"node": ">=18.0.0"
|
|
},
|
|
"keywords": ["postgres", "firebase", "storage", "functions", "database", "auth"],
|
|
"volta": {
|
|
"node": "18.17.1"
|
|
}
|
|
}
|