-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.8 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
{
"name": "js-openfort-sdk",
"version": "0.0.0",
"author": "Openfort (https://www.openfort.xyz)",
"bugs": "https://github.com/openfort-xyz/openfort-js/issues",
"homepage": "https://github.com/openfort-xyz/openfort-js#readme",
"repository": "github.com/openfort-xyz/openfort-js.git",
"license": "MIT",
"scripts": {
"test": "wsrun --exclude-missing -e test",
"test-e2e": "cd examples/apps/auth-sample && yarn playwright test",
"docs:build": "typedoc",
"docs:json": "typedoc --json docs/spec.json",
"typecheck": "wsrun --exclude-missing typecheck",
"lint": "wsrun --exclude-missing -e lint --no-error-on-unmatched-pattern",
"build": "NODE_OPTIONS=--max-old-space-size=14366 wsrun -y 4 -p @openfort/openfort-js -e -r --serial build",
"postinstall": "husky install; ./.husky/install_gitleaks.sh",
"scan:secrets": "./.husky/run_gitleaks.sh"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"packageManager": "yarn@3.6.1",
"private": true,
"dependencies": {
"tslib": "^2.6.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"events": "^3.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"typedoc": "^0.24.8",
"vm-browserify": "^1.1.2",
"wsrun": "^5.2.4"
},
"lint-staged": {
"*": "yarn scan:secrets",
"*.{js,jsx,ts,tsx}": "eslint"
},
"workspaces": {
"packages": [
"sdk",
"packages/internal/openapi-clients",
"packages/platform-bridge"
],
"nohoist": [
"examples/**"
]
}
}