forked from supabase/supabase-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.56 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@supabase/supabase-js",
"version": "1.0.0",
"description": "Isomorphic Javascript client for Supabase.",
"keywords": [
"javascript",
"typescript",
"supabase"
],
"homepage": "https://github.com/supabase/supabase-js",
"bugs": "https://github.com/supabase/supabase-js/issues",
"license": "MIT",
"author": "Supabase",
"files": [
"dist"
],
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"repository": "supabase/supabase-js",
"scripts": {
"clean": "rimraf dist docs",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"build": "run-s clean format build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"test": "jest --runInBand",
"test:db": "cd infra/db && docker-compose down && docker-compose up -d && sleep 5",
"test:clean": "cd infra/db && docker-compose down",
"docs": "typedoc --mode file --target ES6 --theme minimal",
"docs:json": "typedoc --json docs/spec.json --mode modules --includeDeclarations --excludeExternals"
},
"dependencies": {
"@supabase/gotrue-js": "^1.7.1",
"@supabase/postgrest-js": "^0.21.1",
"@supabase/realtime-js": "^1.0.6"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"husky": "^4.3.0",
"jest": "^26.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"typedoc": "^0.19.1",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}