-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.78 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
{
"name": "@reapit/connect-session",
"version": "6.1.3",
"description": "OAuth Flow for Reapit Connect",
"keywords": [],
"homepage": "https://github.com/reapit/foundations#readme",
"bugs": {
"url": "https://github.com/reapit/foundations/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reapit/foundations.git"
},
"license": "ISC",
"author": "",
"files": [
"dist",
"src/tests/badges"
],
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js"
},
"main": "dist/cjs/index.js",
"typings": "dist/cjs/index.d.ts",
"types": "dist/cjs/index.d.ts",
"scripts": {
"start": "echo '...skipping...'",
"test": "cross-env TZ=UTC jest --watch --colors --silent",
"build": "cross-env NODE_ENV=production && rimraf dist && rollup -c",
"lint": "eslint --cache --ext=ts,tsx,js src",
"checkTypes": "tsc --noEmit --skipLibCheck",
"release": "echo '...skipping...'",
"deploy": "echo '...skipping...'",
"publish": "yarn npm publish --access public",
"conf": "echo '...skipping...'",
"commit": "yarn test --coverage --no-cache --silent --forceExit --detectOpenHandles --runInBand --watch=false && jest-coverage-badges --input src/tests/coverage/coverage-summary.json --output src/tests/badges && yarn lint --fix && yarn check"
},
"dependencies": {
"@aws-crypto/sha256-browser": "^5.2.0",
"axios": "^1.7.7",
"base-64": "^1.0.0",
"idtoken-verifier": "^2.2.4",
"isomorphic-fetch": "^3.0.0",
"jwt-decode": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"text-encoding": "^0.7.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@linaria/react": "^6.2.1",
"@reapit/ts-scripts": "^0.1.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/react-hooks": "^8.0.1",
"@types/base-64": "^1.0.2",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.11",
"@types/text-encoding": "^0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-jest": "^29.7.0",
"concurrently": "^6.5.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-coverage-badges": "^1.1.2",
"rimraf": "^5.0.5",
"rollup": "^4.13.0",
"snyk": "^1.1285.0",
"typescript": "^5.4.2"
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
],
"snyk": false,
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}