forked from bjerkio/oidc-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.96 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
{
"name": "oidc-react",
"version": "1.5.1",
"private": false,
"description": "",
"repository": "github:bjerkio/oidc-react",
"license": "MIT",
"author": "",
"main": "build/src/index.js",
"files": [
"/build"
],
"scripts": {
"start": "node build/index.js",
"build": "tsc -p tsconfig.release.json",
"test": "jest --coverage src --passWithNoTests",
"test:watch": "npm run test -- --watch",
"lint": "eslint . --ext .ts,.tsx",
"generate-docs": "typedoc --out docs src",
"bundlewatch": "bundlewatch --config .bundlewatch.config.json"
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": -10
}
},
"preset": "ts-jest",
"testPathIgnorePatterns": [
"/node_modules/",
"/__fixtures__/",
"<rootDir>/build"
]
},
"dependencies": {
"oidc-client": "^1.11.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.4.0",
"@testing-library/react": "^11.0.4",
"@types/faker": "^5.1.0",
"@types/jest": "^26.0.10",
"@types/node": "^17.0.29",
"@types/react": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"bundlesize": "^0.18.1",
"bundlewatch": "^0.3.2",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-react": "^7.19.0",
"faker": "^5.0.0",
"jest": "^25.3.0",
"jest-cli": "^26.0.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"ts-jest": "^25.3.1",
"ts-node-dev": "^1.0.0-pre.40",
"typedoc": "^0.20.5",
"typedoc-plugin-markdown": "^3.0.3",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^18.1.0",
"react-dom": "^16.8.0 || ^18.1.0"
}
}