* using slack clone to test * updates auth functions to handle new GUC commands * move postgREST to new version * testing with todo list * makeing our mount setup far more robust * Adds some usage commands * cleans up the auth functions * test with todos app * fix env var for GUC * new auth functions - changed for performance improvement * Adds some integration tests for RLS * anon volume on postgres * remove unused helpers * fix broken docusaurus build * Fix complaining vercel * test instructions * Use named imports * Fixes imports * all relative * chore: add in tsconfig.json to /web * finding these all over the place * Update docker/docker-compose.yml Co-authored-by: Steve Chavez <stevechavezast@gmail.com> Co-authored-by: Jonathan Summers-Muir <MildTomato@users.noreply.github.com> Co-authored-by: Steve Chavez <stevechavezast@gmail.com>
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"name": "Supabase",
|
|
"description": "The open source Firebase alternative.",
|
|
"version": "0.0.0",
|
|
"author": "Supabase, Inc.",
|
|
"license": "Apache-2.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"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": "jest"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.16.0",
|
|
"@babel/preset-env": "^7.16.4",
|
|
"@babel/preset-typescript": "^7.16.0",
|
|
"@supabase/supabase-js": "^1.28.1",
|
|
"@types/jest": "^27.0.3",
|
|
"@types/node": "^14.14.14",
|
|
"axios": "^0.24.0",
|
|
"babel-jest": "^27.3.1",
|
|
"dotenv": "^10.0.0",
|
|
"faker": "^5.5.3",
|
|
"jest": "^27.3.1",
|
|
"ts-jest": "^27.0.7",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.5.2"
|
|
},
|
|
"directories": {
|
|
"doc": "docs"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/supabase/supabase.git"
|
|
},
|
|
"keywords": [
|
|
"postgres",
|
|
"firebase",
|
|
"storage",
|
|
"functions",
|
|
"database",
|
|
"auth"
|
|
]
|
|
}
|