-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "oidc-react",
"version": "3.4.1",
"private": false,
"description": "OpenID Connect Authentication for React. Supports Hooks 🚀",
"repository": "github:bjerkio/oidc-react",
"license": "MIT",
"author": "Bjerk AS",
"main": "build/src/index.js",
"packageManager": "[email protected]",
"files": [
"/build"
],
"prettier": "@simenandre/prettier",
"scripts": {
"start": "node build/index.js",
"build": "tsc -p tsconfig.release.json",
"test": "vitest",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"generate-docs": "typedoc"
},
"dependencies": {
"oidc-client-ts": "^2.4.0"
},
"devDependencies": {
"@bjerk/eslint-config": "^6.0.2",
"@simenandre/prettier": "^5.0.0",
"@testing-library/react": "^16.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.2.12",
"eslint": "^9.0.0",
"jsdom": "^22.1.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-node-dev": "^2.0.0",
"typedoc": "^0.26.10",
"typedoc-plugin-markdown": "^4.2.9",
"typescript": "^5.2.2",
"vitest": "^2.0.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || || ^17.0.0 || ^18.0.0"
}
}