-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
95 lines (95 loc) · 2.74 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "openfga.dev",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
"dev": "docusaurus start --port=${PORT:-3000}",
"docusaurus": "docusaurus",
"start": "npm run serve --port=${PORT:-3000}",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve --port=${PORT:-3000}",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"docker:build": "docker build . -t openfga-docs-ui",
"docker:run": "docker run -p ${PORT:-3000}:3000 openfga-docs-ui",
"typecheck": "tsc --skipLibCheck",
"lint": "eslint . --ext .ts --ext .tsx",
"lint:fix": "npm run lint -- --fix",
"format:check": "prettier --check src/**",
"format:fix": "prettier --write src/**"
},
"dependencies": {
"@docusaurus/core": "3.5.2",
"@docusaurus/plugin-client-redirects": "3.5.2",
"@docusaurus/preset-classic": "3.5.2",
"@easyops-cn/docusaurus-search-local": "0.44.5",
"@lottiefiles/react-lottie-player": "3.5.4",
"@openfga/frontend-utils": "^0.2.0-beta.11",
"@openfga/sdk": "^0.6.3",
"@openfga/syntax-transformer": "^0.2.0-beta.19",
"assert-never": "1.3.0",
"clsx": "2.1.1",
"path-browserify": "1.0.1",
"prism-react-renderer": "2.4.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-feather": "2.0.10",
"sanitize-html": "2.13.0",
"swagger-ui-react": "5.17.14"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.5.2",
"@tsconfig/docusaurus": "2.0.3",
"@types/prismjs": "1.26.4",
"@types/react": "18.3.5",
"@types/react-router-dom": "5.3.3",
"@types/sanitize-html": "2.13.0",
"@typescript-eslint/eslint-plugin": "8.4.0",
"@typescript-eslint/parser": "8.4.0",
"docusaurus-plugin-module-alias": "0.0.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.35.1",
"husky": "9.1.5",
"prettier": "3.3.3",
"typescript": "5.5.4"
},
"overrides": {
"gauge": "^5.0.0",
"[email protected]": "^7.0.0",
"[email protected]": "0.0.3",
"semver": "^7.5.3"
},
"keywords": [
"authorization",
"fga",
"fine-grained-authorization",
"openfga",
"openfga-docs",
"documentation",
"zanzibar"
],
"repository": {
"type": "git",
"url": "git://github.com:openfga/openfga.dev"
},
"bugs": {
"url": "https://github.com/openfga/openfga.dev/issues"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}