-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.83 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
{
"name": "@virtuslab/react-oauth2",
"version": "1.4.4",
"description": "",
"author": "Adam Kusmierz <[email protected]>",
"homepage": "https://github.com/VirtusLabRnD/react-oauth2#readme",
"license": "ISC",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/VirtuslabRnD/react-oauth2.git"
},
"scripts": {
"clean": "rm -rf ./lib",
"build:dev": "yarn clean && tsc",
"build": "yarn clean && tsc -p tsconfig.prod.json",
"test": "jest --env=jsdom",
"test:ci": "yarn test --ci",
"lint": "eslint src",
"prepare": "yarn build",
"prepublishOnly": "eslint src",
"preversion": "eslint src"
},
"bugs": {
"url": "https://github.com/VirtuslabRnD/react-oauth2/issues"
},
"dependencies": {
"keycloak-js": "^20.0.3",
"p-timeout": "^4.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.3",
"@types/node": "^18.7.14",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/react-router": "^5.1.16",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-extended": "^3.0.1",
"react": "^18.0.2",
"react-dom": "^18.0.2",
"react-router": "^6.3.0",
"ts-jest": "^28.0.8",
"typescript": "^4.7.2"
},
"peerDependencies": {}
}